I am using v-select https://vue-select.org/ in my project. I'd like to have my search value filled with current selection on focus.
First step is: My first selection After I select the first option, I want to have my search value equal to the one I selected, now it shows as a placeholder not as an actual filled in search value and I cannot find a way to achieve that for now as I cannot set the search value on focus.
I also tried with :search or :autocomplete props but nothing seems to work.
<vSelect
v-if="addressSuggestions"
v-model="checkoutStore.selectedAddress"
label="tekst"
:options="addressSuggestions"
:autocomplete="checkoutStore.selectedAddress?.tekst"
:search="checkoutStore.selectedAddress?.tekst"
...