mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
|
import Table from './src/table.vue'
|
|
import TableColumn from './src/tableColumn'
|
|
|
|
export const ElTable = withInstall(Table, {
|
|
TableColumn,
|
|
})
|
|
export default ElTable
|
|
export const ElTableColumn = withNoopInstall(TableColumn)
|