I am using vuetify's v-select component. I am trying to add a search bar option in the dropdown.
Is there any inbuilt way I can do that. I am using vuetify version 1.0.5.
<v-select
:items="users"
attach
item-text='name'
item-value='name'
v-model="association.name"
:rules='nameRule'
label="First Name"
required>
</v-select>