Reputation: 231
I have a v-table and I need remove disable sort function when user click on header. How I can do It?
Upvotes: 6
Views: 9445
Reputation: 1
you can use property disable-sort:
<v-data-table disable-sort>
</v-data-table>
Upvotes: -1
Reputation: 28434
You can set sortable: false
on the column headers you want to disable.
Upvotes: 7