Say create vue-select with:
<v-select multiple v-model="selected"></v-select>
When triggering the drop-down menu and after making a selection, the menu disappears.
And to make multiple selections, one has to click the input bar multiple times to re-open the drop-down for multiple times, which is not very user-friendly.
I originally had written the component to work the way that you describe. I received overwhelming feedback that it was not the expected UX and the default implementation was changed a few versions back. However, I added a prop if you want the UX you described:
<v-select multiple :close-on-select="false" />
Thanks!
Most helpful comment
I originally had written the component to work the way that you describe. I received overwhelming feedback that it was not the expected UX and the default implementation was changed a few versions back. However, I added a prop if you want the UX you described:
https://codepen.io/sagalbot/pen/BYjwxg?editors=1010