mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
24 lines
688 B
TypeScript
24 lines
688 B
TypeScript
import type { App, Plugin } from 'vue';
|
|
import Tabs from './tabs';
|
|
import TabPane from '../vc-tabs/src/TabPane';
|
|
import TabContent from '../vc-tabs/src/TabContent';
|
|
|
|
Tabs.TabPane = { ...TabPane, name: 'ATabPane', __ANT_TAB_PANE: true };
|
|
Tabs.TabContent = { ...TabContent, name: 'ATabContent' };
|
|
|
|
/* istanbul ignore next */
|
|
Tabs.install = function (app: App) {
|
|
app.component(Tabs.name, Tabs);
|
|
app.component(Tabs.TabPane.name, Tabs.TabPane);
|
|
app.component(Tabs.TabContent.name, Tabs.TabContent);
|
|
return app;
|
|
};
|
|
|
|
export default Tabs as typeof Tabs &
|
|
Plugin & {
|
|
readonly TabPane: typeof TabPane;
|
|
readonly TabContent: typeof TabContent;
|
|
};
|
|
|
|
export { TabPane, TabContent };
|