ant-design-vue/components/tabs/index.js

8 lines
278 B
JavaScript
Raw Normal View History

2018-03-19 02:16:27 +00:00
import Tabs from './tabs'
2018-04-07 10:52:02 +00:00
import TabPane from '../vc-tabs/src/TabPane'
import TabContent from '../vc-tabs/src/TabContent'
2018-04-08 13:17:20 +00:00
Tabs.TabPane = { ...TabPane, name: 'ATabPane' }
Tabs.TabContent = { ...TabContent, name: 'ATabContent' }
2017-11-02 02:42:34 +00:00
export default Tabs
2017-11-30 11:11:42 +00:00
export { TabPane, TabContent }