I am working with a v-autocomplete component
<v-autocomplete
v-model="addressRegion"
:items="selectLists.regions"
item-value="key"
item-text="value"
></v-autocomplete>
The AddressRegion is currently stored as a number, for example: 3. However, the selectLists.regions array contains objects with keys and values. I need to somehow convert the value in the v-model to a string format. Since there are multiple selectLists on the page, using a computed property with get/set might not be the most efficient solution. How can I resolve this issue?