I have a search bar and an autocomplete component. What I'd like is to be able to style the way the autocomplete renders. At the moment, when I type letters, it displays every word that contains those letters and what I'd like is for it to only show the words which begin with the letters I'm typing. Also, is there a way not to highlight the letters, but to display them in bold ?
Here's what my code looks like
<template>
<div class="inspire" style="background-color:red">
<v-app-bar style="padding: 10px 0px;"
color="rgba(33,33,33,255)"
elevation="0"
height="64px"
>
<div style="width:100%" v-if="$route.name == 'Mapping'">
<template>
<v-autocomplete
v-model="valuesActor"
:items="actorArray"
:search-input.sync="searchActor"
filled
@blur="toggleSearch"
background-color="#313131"
append-icon=""
color="var(--textLightGrey)"
:menu-props="{maxWidth: 1600}"
placeholder="Search for actors"
active
>
</v-autocomplete>
</template>
</div>
</v-app-bar>
</div>
</template>