mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
import Tabs from './src/tabs'
|
|
import TabPane from './src/tab-pane.vue'
|
|
|
|
export const ElTabs = withInstall(Tabs, {
|
|
TabPane,
|
|
})
|
|
export default ElTabs
|
|
export const ElTabPane = withNoopInstall(TabPane)
|
|
|
|
export * from './src/tabs'
|
|
export * from './src/tab-bar'
|
|
export * from './src/tab-nav'
|
|
export * from './src/tab-pane'
|