How can I implement a fold-out display for entries in a v-select
field while also enabling text search functionality to find specific items? Are there any Vuetify props that address this, or do you have any suggestions on how to approach this?
<v-select
v-model="searchParams.importApples"
label="Importapples"
:items="importApplesItems"
:menu-props="{ bottom: true, offsetY: true }"
item-text="label"
item-value="value"
filterable
clearable
outlined
dense
/>