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