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