How can I disable animation of the label in v-text-field
. Seems that’s 2 different <label>
animated with style
so no
<code>.v-input *{
transition: none !important;
animation: none !important;
}
</code>
<code>.v-input *{
transition: none !important;
animation: none !important;
}
</code>
.v-input *{
transition: none !important;
animation: none !important;
}
works.
Any prop or theme configuration?
A more broad request: how to disable all vuetify’s animations globally?