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