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