ether-admin/node_modules/ant-design-vue/es/tabs/index.js

10 lines
253 B
JavaScript

import Tabs, { TabPane } from './src';
Tabs.TabPane = TabPane;
/* istanbul ignore next */
Tabs.install = function (app) {
app.component(Tabs.name, Tabs);
app.component(TabPane.name, TabPane);
return app;
};
export default Tabs;
export { TabPane };