vxe-pc-ui
Version:
A vue based PC component library
17 lines (13 loc) • 489 B
text/typescript
import { App } from 'vue'
import { VxeUI } from '@vxe-ui/core'
import VxeSegmentedComponent from './src/segmented'
import { dynamicApp } from '../dynamics'
export const VxeSegmented = Object.assign({}, VxeSegmentedComponent, {
install (app: App) {
app.component(VxeSegmentedComponent.name as string, VxeSegmentedComponent)
}
})
dynamicApp.use(VxeSegmented)
VxeUI.component(VxeSegmentedComponent)
export const Segmented = VxeSegmented
export default VxeSegmented