@blueking/vxe-table
Version:
一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...
18 lines (17 loc) • 656 B
JavaScript
import { VxeUI } from '../ui';
import VxeColgroupComponent from '../table/src/group';
export const VxeColgroup = Object.assign({}, VxeColgroupComponent, {
install(app) {
app.component(VxeColgroupComponent.name, VxeColgroupComponent);
// 兼容旧用法
app.component('VxeTableColgroup', VxeColgroupComponent);
}
});
if (VxeUI.dynamicApp) {
VxeUI.dynamicApp.component(VxeColgroupComponent.name, VxeColgroupComponent);
// 兼容旧用法
VxeUI.dynamicApp.component('VxeTableColgroup', VxeColgroupComponent);
}
VxeUI.component(VxeColgroupComponent);
export const Colgroup = VxeColgroup;
export default VxeColgroup;