mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
16 lines
500 B
JavaScript
16 lines
500 B
JavaScript
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 (Vue) {
|
|
Vue.component(Tabs.name, Tabs)
|
|
Vue.component(Tabs.TabPane.name, Tabs.TabPane)
|
|
Vue.component(Tabs.TabContent.name, Tabs.TabContent)
|
|
}
|
|
|
|
export default Tabs
|
|
export { TabPane, TabContent }
|