We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When I try to use the new text prop of v-btn (<v-btn text="Click me!" />) it gets converted to <v-btn variant="text" />.
v-btn
<v-btn text="Click me!" />
<v-btn variant="text" />
The conversion should only occur for <v-btn text /> or <v-btn :text="true" />.
<v-btn text />
<v-btn :text="true" />