Vuetify v-select with image

Forums How to solve Vuetify v-select with image

Tagged: , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1168
    Acenollari
    Participant

    I want to select an option but the option that i want to select must have a image on the left.

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.