[Vuejs]-Vuetify DataTable hide grouping for expand

0👍

Solution:

I added data-table-expand in the headers array with groupable in false:

{ value: 'data-table-expand', groupable: false }

Leave a comment