index.js 430 B

123456789101112
  1. import { VxeUI } from '@vxe-ui/core';
  2. import VxeTabPaneComponent from '../tabs/src/tab-pane';
  3. import { dynamicApp } from '../dynamics';
  4. export const VxeTabPane = Object.assign({}, VxeTabPaneComponent, {
  5. install(app) {
  6. app.component(VxeTabPaneComponent.name, VxeTabPaneComponent);
  7. }
  8. });
  9. dynamicApp.use(VxeTabPane);
  10. VxeUI.component(VxeTabPaneComponent);
  11. export const TabPane = VxeTabPane;
  12. export default VxeTabPane;