@daysnap/horn-ui
Version:
hron ui
16 lines (11 loc) • 361 B
text/typescript
import Component from './hor-picker.vue'
import { withInstall } from '../utils'
export * from './types'
export const HorPicker = withInstall<typeof Component>(Component)
export default HorPicker
export type HorPickerInstance = InstanceType<typeof HorPicker>
declare module 'vue' {
export interface GlobalComponents {
HorPicker: typeof HorPicker
}
}