The most recent update of Vuetify (v1.3 - ) has brought a significant change.
Now, the asterisk is no longer automatically added to the label when using v-textarea/v-text-field with the required prop.. You will need to include it manually in the label prop, like this: label="Message*"
I have numerous forms in my application and I am hesitant to manually modify each one. I was wondering if there is a way to select the label using CSS, despite the tricky HTML structure.
<div class="v-text-field__slot">
<label class="v-label theme--light">Message</label>
<textarea name="message" required="required" rows="5"></textarea>
</div>
Any assistance in targeting the label positioned before the required input would be highly appreciated