mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-16 02:11:48 +08:00
23 lines
464 B
TypeScript
23 lines
464 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
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)
|
|
|
|
export type {
|
|
SummaryMethod,
|
|
Table,
|
|
TableProps,
|
|
TableRefs,
|
|
ColumnCls,
|
|
ColumnStyle,
|
|
TreeNode,
|
|
RenderRowData,
|
|
Sort,
|
|
Filter,
|
|
} from './src/table/defaults'
|