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