I need advice on the best way to use Vuetify in order to display a button to the right of a text-field (attached).
I've checked the main site for information but couldn't find anything related to this specific scenario.
https://i.sstatic.net/PphaR.png
<v-row class="text-center d-flex justify-center" v-if="downloadOption == 'HTML'">
<v-text-field dense outlined v-model="imageLink" label="Image Link" required></v-text-field>
<v-btn large class="ma-1" outlined color="indigo"> Copy </v-btn>
<v-text-field dense outlined v-model="html" label="HTML" required></v-text-field>
<v-btn large class="ma-1" outlined color="indigo"> Copy </v-btn>
</v-row>
Any suggestions or tips on how I can achieve this task?