fix: 使 Table 组件支持列宽和固定列配置

(cherry picked from commit f3622d423a)
This commit is contained in:
puhui999
2023-06-21 15:27:35 +08:00
committed by shizhong
parent 1e0b6e9efc
commit 1c01266d62
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,8 @@
export type TableColumn = {
field: string
label?: string
width?: number | string
fixed?: 'left' | 'right'
children?: TableColumn[]
} & Recordable