Context:
I've decided to create a v-radio button with v-text-field as a label for it.
I used the label slot like this:
<v-radio
v-for="option in question.options"
:key="option"
:label="option"
:value="option"
>
<template #label>
<v-text-field
label="Test"
/>
</template>
</v-radio>
Problem:
This is the output that I got when applying the previous code snippet:
Additional Info:
I checked another normal radio button in the project (which is copied from Vuetify docs)
The code is as follows:
<v-radio
label="red darken-3"
color="red darken-3"
value="red darken-3"
/>
Here is the output for that code:
Question:
Is there a way to get a normal radio button with input text without having two radio button "circles"?
Vuetify version: ^2.4.5

