I have this code in a vue component that uses Vuetify data table.
<template slot="body.append">
<tr>
<th :colspan="6" class="text-right">Total:</th>
</tr>
</template>
The problem is that on mobile my custom tr row is not getting the CSS classes similar to the default data table
<tr class="v-data-table__mobile-table-row">
<td class="v-data-table__mobile-table-row"></td>
</tr>
How could I add those classes dynamically like the default data tables does. And also is there any way I can disable :colspan="6" on mobile?