How can I style the autocomplete component to only show words that begin with the letters I'm typing, rather than all words containing those letters? Also, is there a way to display the typed letters in bold without highlighting them?
https://i.sstatic.net/0tVgt.png
Below is the code snippet in question:
<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>