feat(Table): support nested keys in columns (#503)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Vladyslav
2023-08-09 11:56:10 +03:00
committed by Benjamin Canac
parent 74f4903836
commit 858886a852
2 changed files with 10 additions and 6 deletions

View File

@@ -545,7 +545,7 @@ Even though you can customize the sort button as mentioned in the [Sortable](#so
### `<column>-data`
Use the `#<column>-data` slot to customize the data cell of a column. You will have access to the `row` and `column` properties in the slot scope.
Use the `#<column>-data` slot to customize the data cell of a column. You will have access to the `row`, `column` and `getRowData` properties in the slot scope.
You can for example create an extra column for actions with a [Dropdown](/elements/dropdown) component inside or change the color of the rows based on a selection.