data: {
options: [
{
title: 'Read the Docs',
svg: '<svg>...</svg>',
},
]
}
<template>
<v-select :options="books" label="title">
<template #option="{ title, author }">
<h3 style="margin: 0">{{ title }}</h3>
<em>{{ author.firstName }} {{ author.lastName }}</em>
</template>
</v-select>
</template>