Environment
Vuetify Version: 3.12.4
Vue Version: 3.5.31
OS: macOS 10.15 (current)
Steps to reproduce
- Bind
v-model:search on a VAutocomplete and use it to fetch items from a remote API
- Search for an item not in the initial list, select it
- Click outside the field to trigger the blur
@update:search fires with "" / undefined → remote reload → selected item disappears from items → label no longer renderable
Expected Behavior
Blurring the field should not emit @update:search.
Actual Behavior
@update:search is triggered, which updates / clears the items list, with the selected element among it. The field will then display the object's value (for example, an ID) instead of label
Reproduction Link
https://play.vuetifyjs.com/#...