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