mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
- Add TableHeaderCell props definition - Implement TableHeaderCell - Extract some common props - Fix components' name
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import { buildProps } from '@element-plus/utils'
|
|
import { classType, column } from './common'
|
|
|
|
import type { ExtractPropTypes } from 'vue'
|
|
|
|
export const tableV2HeaderCell = buildProps({
|
|
class: classType,
|
|
columnIndex: Number,
|
|
column,
|
|
})
|
|
|
|
export type TableV2HeaderCell = ExtractPropTypes<typeof tableV2HeaderCell>
|