I am looking to change the appearance of the items in the dropdown menu of my Autocomplete Box. Vuetify-Autocomplete
Currently, it displays the standard style for each item: Current
<v-autocomplete
chips
deletable-chips
multiple
v-model="selectedTags"
:items="tags"
></v-autocomplete>
However, I would like the items to be displayed in a chips-style format like this:
If possible, I would also like to assign specific colors to each tag. I am currently showcasing them in a table using the normal "v-chip" component, which is working well! Table with colored chips
I have attempted tweaking CSS and the V-autocomplete component, but encountered errors each time.
I tried searching for something like
:menu-props="{
nudgeBottom: 15 + 'px',
zIndex: 2,
allowOverflow,
rounded: 'xl' // <-- Here ✅
}"
as shown in this issue on Stackoverflow, but for the properties/items within the menu instead of the menu itself.
Another solution could be creating a custom version that doesn't use the dropdown, where I check if the string is in one of the chips in my chip-list and display them below the search bar. However, this would mean sacrificing some cool autocomplete features.
I am unable to add pictures at the moment due to being new here. Apologies for that!
I hope I have provided all necessary information.