mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
|
import { App } from 'vue'
|
||
|
import TabPane from '../tabs/src/tab-pane.vue'
|
||
|
|
||
|
TabPane.install = (app: App): void => {
|
||
|
app.component(TabPane.name, TabPane)
|
||
|
}
|
||
|
|
||
|
export default TabPane
|