If user doesn't select value from list and he enter some text. Then, he doesn't press enter, he move pointer to out of v-select place and click to other place. How can I remove text of v-select when he does that?
Hi @chingo89GE,
You can use the search:blur event. Here's an example on Codepen.
http://codepen.io/sagalbot/pen/xqPEVE
The only issue I see with this is that it wouldn't work well if you're dynamically creating v-selects in a v-for loop. In a future release, I will pass the vm instance as an argument in all events.
It works fine. Thank you, @sagalbot !