element-plus/packages/tabs/index.ts

12 lines
268 B
TypeScript
Raw Normal View History

2020-08-14 09:49:31 +08:00
import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
2020-08-14 09:49:31 +08:00
import Tabs from './src/tabs.vue'
2020-10-29 17:28:26 +08:00
Tabs.install = (app: App): void => {
2020-08-14 09:49:31 +08:00
app.component(Tabs.name, Tabs)
}
2020-10-29 17:28:26 +08:00
const _Tabs: SFCWithInstall<typeof Tabs> = Tabs
export default _Tabs