mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
17 lines
310 B
Vue
17 lines
310 B
Vue
<template>
|
|
<v-select
|
|
placeholder="Choose a book to read"
|
|
label="title"
|
|
:options="books"
|
|
:selectable="(option) => !option.author.lastName.includes('Woodhouse')"
|
|
/>
|
|
</template>
|
|
<script>
|
|
import books from '../data/books'
|
|
export default {
|
|
computed: {
|
|
books: () => books,
|
|
},
|
|
}
|
|
</script>
|