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