feat(VAutoComplete): add clearSearchOnSelection prop
Description
Add clearSearchOnSelection prop to VAutoComplete component. Typed search query cleared after selecting an item when this prop is true.
resolves #18428
Markup:
<template>
<v-autocomplete
label="Autocomplete"
:items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']"
clearSearchOnSelection
/>
</template>
This is exactly what I am looking for. Currently when using Autocomplete it's not very intuitive. This prop would mean Autocomplete would behave like MUI Autocomplete. I even think this prop should be true by default.
Do you plan to merge this PR?
I would also be interested in having this new feature added to this selector. As @hanzelkatomas, I do think that this prop should be true by default, the user experience would feel more natural.
Could someone please review this PR and merge it? :)
I hope for a quick review, long awaited
This seems to exist with the prop clearOnSelect? (Vuetify 3.5.13)