Can I apply different styling for a specific row in a data table?
This is my code:
I was also trying to style rows in a vuetify data-table but the above answers didn't have everything I needed to make it work. Using Vuetify v2
I wanted to add a class to a row when a certain condition was met.
{{props.item.current}}
{{props.item.total}}
...
// js portion of the component (computed prop)
myItems() {
return [
{
current: 101,
total: 100
},
{
current: 45,
total: 100
}
]
}