I've created a v-data-table, the behavior that is expected is not to put all the headers for every row of the table, (by default vuetify render as I said) I show the actual behavior:
What I need is to show the v-data-table headers as it does in normal size, one row for headers and the rest for items of the v-data-table. Any approach?
This is Vuetify 2, right? Have a look at the :mobile-breakpoint
property, set it to 0
to disable mobile display:
<v-data-table
:mobile-breakpoint="0"
...
/>