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 = Table export default _Table