element-plus/packages/table/index.ts

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