mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
import { App } from 'vue'
|
|
import VxeSelectComponent from './src/select'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const VxeSelect = Object.assign(VxeSelectComponent, {
|
|
install: function (app: App) {
|
|
app.component(VxeSelectComponent.name, VxeSelectComponent)
|
|
}
|
|
})
|
|
|
|
export const Select = VxeSelect
|
|
|
|
dynamicApp.component(VxeSelectComponent.name, VxeSelectComponent)
|
|
|
|
export default VxeSelect
|