mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
import VxeTableColgroup from '../table/src/group'
|
|
|
|
export const Colgroup = Object.assign(VxeTableColgroup, {
|
|
install (Vue) {
|
|
Vue.component(VxeTableColgroup.name, VxeTableColgroup)
|
|
// 兼容旧用法
|
|
Vue.component('VxeTableColgroup', VxeTableColgroup)
|
|
}
|
|
})
|
|
|
|
export default Colgroup
|