17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import VxeTableSelectComponent from './src/table-select'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const VxeTableSelect = Object.assign({}, VxeTableSelectComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeTableSelectComponent.name as string, VxeTableSelectComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeTableSelect)
|
|
VxeUI.component(VxeTableSelectComponent)
|
|
|
|
export const TableSelect = VxeTableSelect
|
|
export default VxeTableSelect
|