types: 修复Table类型错误

This commit is contained in:
kailong321200875 2024-02-29 15:18:41 +08:00
parent 2c89dbc884
commit 79b917af49
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ export interface TableProps extends Omit<Partial<ElTableProps<any[]>>, 'data'> {
align?: 'left' | 'center' | 'right'
// 表头对齐方式
headerAlign?: 'left' | 'center' | 'right'
preview?: string[]
imagePreview?: string[]
videoPreview?: string[]
sortable?: boolean
data?: Recordable
}