I want to change the Style of the Items in the drodpown Menu of my Autocomplete Box. Vuetify-Autocomplete
Currently it shows the standard Style for each Item: Current
<v-autocomplete
chips
deletable-chips
multiple
v-model="selectedTags"
:items="tags"
></v-autocomplete>
But I want it to show chips Items-Style like this:
If possible even with specific colors for each Tag. I am currently displaying them in a Table with the normal "v-chip" component which works great! Table with colored chips
I tried to tinker a little bit with CSS and with the V-autocomplete Component which resulted in Errors each Time.
I tried to find something like
:menu-props="{
nudgeBottom: 15 + 'px',
zIndex: 2,
allowOverflow,
rounded: 'xl' // <-- Here ✅
}"
shown in this Issue StackoverflowIssue. But for the Props/Items inside the Menu instead for the Menu.
The other solution would be to do a do-it myself Version which doesn't use the dropdown and I simply check if the string is contained in one of the Chips in my Chip-List and display them beneath the Searchbar. But then I would need to reject some cool features of autocomplete.
I can't append Pictures yet, because I am too new. Sorry for that!
I hope I included all Infos.