We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e82003 commit 190b671Copy full SHA for 190b671
src/Select.vue
@@ -128,6 +128,7 @@ const availableOptions = computed(() => {
128
const options = props.displayedOptions || props.options;
129
130
// Remove already selected values from the list of options, when in multi-select mode.
131
+ // eslint-disable-next-line unicorn/consistent-function-scoping
132
const filterMultiSelectedValues = (options: GenericOption[]) => options.filter(
133
(option) => !(selected.value as OptionValue[]).includes(option.value),
134
);
0 commit comments