You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
468 B
16 lines
468 B
import { VueConstructor } 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: VueConstructor) {
|
|
app.component(VxeSelectComponent.name as string, VxeSelectComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeSelect)
|
|
VxeUI.component(VxeSelectComponent)
|
|
|
|
export const Select = VxeSelect
|
|
export default VxeSelect
|
|
|