› Forums › How to solve › Vuetify v-select with image › Reply To: Vuetify v-select with image
November 7, 2023 at 3:58 pm
#1169
Participant
VUETIFY
<v-select
class=”select-style”
:items=”items”
id=”locale”
@input=”switchLocale”
v-model=”selectedLocale”
>
<template v-slot:selection=”{ item, index }”>
{{ item.label }}
</template>
<template v-slot:item=”{ item }”>
{{ item.label }}
</template>
</v-select>
<span style=”text-decoration: underline;”></span>
SCRIPT
return {
items: [
{ value: ‘al’, label: ‘Shqip’, image: ‘albaniaflag.png’ },
{ value: ‘en’, label: ‘English’, image: ‘gbflag.png’ },
],
}