vxe-table
Version:
A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.
14 lines (13 loc) • 415 B
JavaScript
import { VxeUI } from '../ui';
import VxeGridComponent from './src/grid';
export const VxeGrid = Object.assign({}, VxeGridComponent, {
install(app) {
app.component(VxeGridComponent.name, VxeGridComponent);
}
});
if (VxeUI.dynamicApp) {
VxeUI.dynamicApp.component(VxeGridComponent.name, VxeGridComponent);
}
VxeUI.component(VxeGridComponent);
export const Grid = VxeGrid;
export default VxeGrid;