mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
import Table from './src/table.vue'
|
|
|
|
Table.install = (app: App): void => {
|
|
app.component(Table.name, Table)
|
|
}
|
|
|
|
const _Table: SFCWithInstall<typeof Table> = Table
|
|
|
|
export default _Table
|