0👍
✅
Solved adding the lazy tag with my v-autocomplete. I also declared a new variable for the search inside ‘watch’ property.
<v-lazy>
<v-autocomplete
v-model="cliente.municipio"
:loading="isLoading"
:search-input.sync="searchM"
hide-no-data
auto-select-first
:items="itemsMunicipio"
return-object
item-text="descricao"
label="Municipo"
></v-autocomplete>
</v-lazy>
Source:stackexchange.com