mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
14cfb0500f
- Finishing the documentation examples - Add APIs to the documentation - Fix some issue while updating the documentations
25 lines
630 B
TypeScript
25 lines
630 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
import TableV2 from './src/table-v2'
|
|
|
|
export {
|
|
Alignment as TableV2Alignment,
|
|
FixedDir as TableV2FixedDir,
|
|
SortOrder as TableV2SortOrder,
|
|
} from './src/constants'
|
|
export { default as TableV2 } from './src/table-v2'
|
|
export { placeholderSign as TableV2Placeholder } from './src/private'
|
|
|
|
export const ElTableV2 = withInstall(TableV2)
|
|
|
|
export type {
|
|
Column,
|
|
Columns,
|
|
SortBy,
|
|
SortState,
|
|
TableV2CustomizedHeaderSlotParam,
|
|
} from './src/types'
|
|
export * from './src/table'
|
|
export * from './src/row'
|
|
|
|
export type { HeaderCellSlotProps } from './src/renderers/header-cell'
|