1234567891011121314151617181920212223242526272829 |
- 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 TableInstance = InstanceType<typeof Table>
- export type TableColumnInstance = InstanceType<typeof TableColumn>
- export type {
- SummaryMethod,
- Table,
- TableProps,
- TableRefs,
- ColumnCls,
- ColumnStyle,
- CellCls,
- CellStyle,
- TreeNode,
- RenderRowData,
- Sort,
- Filter,
- TableColumnCtx,
- } from './src/table/defaults'
|