mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
25 lines
464 B
Vue
25 lines
464 B
Vue
<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>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
books: [
|
|
{
|
|
title: "Old Man's War",
|
|
author: {
|
|
firstName: 'John',
|
|
lastName: 'Scalzi',
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
}
|
|
</script>
|