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