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