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