I want to change the box style of the v-autocomplete
drop-down list and give a border-radius
style to the drop-down list, as you can see in the image below.
What I have designed so far is like the image below.
So far, I've given the menu-props property directly to the v-autocomplete
tag:
<v-autocomplete
:menu-props="{
nudgeBottom: 15 + 'px',
zIndex: 2,
allowOverflow
}"
:items="searchBarInfo"
rounded
outlined
filled
clearable
item-color="deep-purple"
height="50"
placeholder="Search the ..."
color="rgba(0, 0, 0, 0.7)"
background-color="white"
prepend-inner-icon="mdi-magnify"
class="my-text-style "
:no-data-text="($vuetify.noDataText = 'Nothing found')">
</v-autocomplete>
The above code only adds the v-autocomplete
tag but not the border-radius
style.
Is there a way to make something like the image you see with Vuetify's v-autocomplete
?
Any help would be appreciated.