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