I want to customize the dropdown list,
with class of vuetify or with custom class.
How can I do it?
This is the image of list
I tried to check with F12 and see what the class of the list is, but every time the list closes immediately.
I also tried searching maybe using the item-prpos
property or using the menu-props
property, but couldn’t.
This is my code:
<v-autocomplete
:items="dataItems"
clearable
class=""
variant="solo"
rounded="pill"
bg-color="blue"
clear-icon="mdi-close"
menu-icon="none"
density="comfortable"
flat="true"
@blur="onInput"
/>
Maybe you will know?