[Vuejs]-VueJs – Include a button after a v-select

0👍

Vuetify has slots to append elements. There are several.

https://vuetifyjs.com/en/api/v-select/#slots

<v-select>
  <template #append>
    <v-btn>Your Button</v-btn>
  </template>
</v-select>

Leave a comment