Reputation: 11
Steps to reproduce Add tabs component to page Use property :touchless="true" on v-tab-item Swiping with finger still causes transition
Touchless prop should prevent user from swiping.
But I am still able to.
Upvotes: 1
Views: 2646
Reputation: 1
The touchless tag never worked for me, the solution in my case was to overwrite the :touch directive like this:
<v-tab-items>
<v-tab-item :touch="false">
</v-tab-item>
</v-tab-items>
Upvotes: 0
Reputation: 181
You should use touchless
in v-tabs-items
vuetify tag.
<v-tabs-items touchless>
<v-tab-item>
//
</v-tab-item>
<v-tab-item>
//
</v-tab-item>
</v-tabs-items>
Upvotes: 7