Reply To: Vuetify v-select with image

Forums How to solve Vuetify v-select with image Reply To: Vuetify v-select with image

#1169
Acenollari
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’ },
],
}