Questions tagged [v-data-table]

No directions have been provided for this tag … as of now!

Modify the background-color when hovering over a v-data-table

Is there a way to change the hover color of a specific line in v-data-table from light grey to orange? The table is currently styled with dark grey, but I want the hover effect to be different. <v-data-table :loading="enableLoadingCircle" ...

Which type of comparator does Vuetify utilize for sorting string columns in a data table?

If I modify the standard Vuetify example to have Calorie values as Strings instead of numbers, and now the data is not entirely numeric: https://codepen.io/hobbeschild/pen/WNQWmrJ What sorting method does Vuetify use internally for ordering these Strings? ...

Using v-select to connect a Rest API with v-data-table was not displaying correctly, so I had to resort to using v-for to populate the table instead

Purpose: 1.Rest API >>> by axios 2.Select category >>> by v-select 3.Show table >>> by v-data-table however, there is an issue with displaying the table so I am using v-for to show it instead. View what I have managed to displa ...

Exploring sub-properties within objects in v-data-table

Currently, I am facing a situation where I need to pass an object as the value for all columns in my v-data-table. Instead of the usual format like this: { name: 'Ice cream sandwich', calories: 237, fat: 9.0, carbs: 37 } I want to struct ...