docs(components): [table-v2] minWidth and maxWidth support type typo (#16415)

feat(components): [table-v2]  `minWidth` and `maxWidth` support type typo
This commit is contained in:
Mafia 2024-04-09 21:03:17 +08:00 committed by GitHub
parent 111086c132
commit 6a0efea64e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -386,8 +386,8 @@ Note that these are `JavaScript` Objects, so you **CANNOT USE** kebab-case for t
| style | Customized style for column cell, will be merged with grid cell | CSSProperties | - |
| sortable | Indicates whether the column is sortable | Boolean | - |
| title | The default text rendered in header cell | String | - |
| maxWidth | Maximum width for the column | String | - |
| minWidth | Minimum width for the column | String | - |
| maxWidth | Maximum width for the column | Number | - |
| minWidth | Minimum width for the column | Number | - |
| width ^(required) | Width for the column | Number | - |
| cellRenderer | Customized Cell renderer | VueComponent/(props: [CellRenderProps](#typings)) => VNode | - |
| headerCellRenderer | Customized Header renderer | VueComponent/(props: [HeaderRenderProps](#typings)) => VNode | - |