django-vue3-admin-web/node_modules/vxe-pc-ui/es/tab-pane/index.js
2025-10-20 21:21:14 +08:00

13 lines
430 B
JavaScript

import { VxeUI } from '@vxe-ui/core';
import VxeTabPaneComponent from '../tabs/src/tab-pane';
import { dynamicApp } from '../dynamics';
export const VxeTabPane = Object.assign({}, VxeTabPaneComponent, {
install(app) {
app.component(VxeTabPaneComponent.name, VxeTabPaneComponent);
}
});
dynamicApp.use(VxeTabPane);
VxeUI.component(VxeTabPaneComponent);
export const TabPane = VxeTabPane;
export default VxeTabPane;