vuetify 3 select with image

Viewed 22

I'm using the Vuetify v-select component :https://next.vuetifyjs.com/en/components/selects/

And i have data:

options: [
  {
    title: "Visa",
    cardImage: "https://codeclimate.com/github/sagalbot/linktoimage.png"
  },
  {
    title: "Mastercard",
    cardImage: "https://codeclimate.com/github/sagalbot/linktoimage.png"
  }
];

How i can add image in dropdown?

0 Answers
Related