element-plus/packages/tab-pane/index.ts

9 lines
179 B
TypeScript
Raw Normal View History

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