I am working with Vuetify code that appears like this
<v-radio-group v-model="gender" column class="radio-group-full-width">
<v-radio value="Boy">
<template v-slot:label>
<v-textarea
v-model="answer"
v-validate="'required'"
required
:error-messages="
errors.collect('form-create.answer')
"
label="Answer 1"
data-vv-name="answer"
type="text"
></v-textarea>
</template>
</v-radio>
</v-radio-group>
The issue I am facing is that I want the text-area to be in full width, but the label tag generated by vuetify's template slot is blocking this. Do you have any suggestions on how I could solve this?