I'm trying to setup backgroud-color on whole cell in vuetify v-data-table but the color is only on the letters and not all the cell.
This is what I get

this is what I want to have

This is the code:

The class custRmk return the backgroud-color based on the value in customerRemark
conditional CSS works fine

Data tables in Vuetify 2 have an
item-classprop that you can use to set a class on the tr depending on the item. Then you can add CSS to set background color on the td elements in the row.Have a look at the snippet: