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