-
Hi everyone, I have a tab bar where the last tab is disabled and I wanted to add a tooltip to explain why to the user. I have tried wrapping the tab inside a Thank you for your time and your help (and sorry for my English, I'm not a native speaker). P.S.: Would it be possible to allow disabled items to receive hover events at some point in the future (or add a new opt-in prop just for this, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
<v-tab
value="three"
disabled
class="pointer-events-auto"
v-tooltip:bottom="'Out of order'"
text="Item Three"
/> The trick is just a class to restore |
Beta Was this translation helpful? Give feedback.
demo
The trick is just a class to restore
pointer-events
.Works with
<v-tooltip>...</v-tooltip>
, assuming you bind events correctlyv-bind="props"
notv-bind="{props}"
.