You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
415 B
13 lines
415 B
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;
|
|
|