I have an array of objects bind to item prop of v-autocomplete. this is my data:
products: [
{
text: "Apple",
value: 209
},
{
text: "Banana",
value: 229
}
]
<v-autocomplete>
...
:item="products"
:search-input.sync="search"
</v-autocomplete>
so, i want to have the ability to search by both 'text' and 'value'. Currently, i am able to search only one among them.