To Reproduce
Steps to reproduce the behavior:
multiple tagExpected behavior
Most of the select components including the most popular one in React ecosystem (https://react-select.com) do not show the selected items in the dropdown in order to avoid inconsistencies and let the user know which items are not selected. Currently, vue-select doesn't do anything when we click an item which is already selected and we got UX bug reports from our users regarding this specific behavior.
Screenshots

This is how react-select behaves:

To counter this problem i used the selectable prop and add the already selected items so that it disables them,
Check this code :
<v-select
v-model="selectedItems"
multiple
:reduce="selected => selected"
:options="['aaa', 'bbb', 'ccc', 'ddd']"
:selectable="selected => !selectedItems.includes(selected)"
/>
Most helpful comment
To counter this problem i used the selectable prop and add the already selected items so that it disables them,
Check this code :