Disable hover effect of v-checkbox in Vuetify 2
P粉826429907
2023-09-03 20:25:54
<p>When hovering over a v-checkbox in Vuetify 2, a dimmed circle appears behind the checkbox. I want it to not show up. Currently, my v-checkbox is wrapped in v-tab and v-tooltip. I doubt it matters, but it's possible. </p>
<pre class="brush:php;toolbar:false;"><v-tab v-for="tab in myTabList" :key="tab">
<span>{{$t(tab)}}</span>
<v-tooltip bottom>
<template #activator="{ on }">
<span v-on="on">
<v-checkbox @click.stop/>
</span>
</template>
<span>Tooltip text</span>
</v-tooltip>
</v-tab></pre>
<p>I tried wrapping it in v-hover and using the disabled attribute, but with no success. </p>
This is the ripple effect, you can turn it off using the
:ripple
property:The following is an example: