Is there a way to disable the ability to remove the current selection if you're on single selection mode? So basically remove the little cross.
This was discussed here and has already been merged in https://github.com/sagalbot/vue-select/pull/470. You can wait for the next release or disable it with CSS if it is something urgent.
You can hide the clear button with CSS:
.v-select .dropdown-toggle .clear { visibility: hidden; }
And you can hide the active item in the dropdown list with CSS:
.v-select .dropdown-menu .active { display: none; }
This is in the recent releases.
Most helpful comment
You can hide the clear button with CSS:
.v-select .dropdown-toggle .clear { visibility: hidden; }And you can hide the active item in the dropdown list with CSS:
.v-select .dropdown-menu .active { display: none; }