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
515 B

import { VxeUI } from '@vxe-ui/core';
import VxeSplitPaneComponent from '../split/src/split-pane';
import { dynamicApp } from '../dynamics';
export const VxeSplitPane = Object.assign({}, VxeSplitPaneComponent, {
install(app) {
app.component(VxeSplitPaneComponent.name, VxeSplitPaneComponent);
app.component('VxeSplitItem', VxeSplitPaneComponent);
}
});
dynamicApp.use(VxeSplitPane);
VxeUI.component(VxeSplitPaneComponent);
export const SplitPane = VxeSplitPane;
export default VxeSplitPane;