v1.4.1
New Features
Render nested objects in the table
It's now possible to render content from a nested object in the table, by passing a column key with a dot notation. For example, if your data looks like this:
{
// ...
progress: {
amount: 42
}
}
You can render the contents of this column by setting progress.amount
as the column key:
const columns = [
// ...
{
text: "Progress",
key: "progress.amount",
},
]
Bug Fixes
A reactivity issue was fixed in the table, leading to it not always correctly rendering an updated items
list.
What's Changed
- Make it possible for the table to render a subitem by @laurensgroeneveld in #165
- Fix table reactivity issue by @laurensgroeneveld in #166
Full Changelog: v1.4.0...v1.4.1