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 88f8922 commit 7c3b60cCopy full SHA for 7c3b60c
src/Select.vue
@@ -121,7 +121,7 @@ const filteredOptions = computed(() => {
121
122
const selectedOptions = computed(() => {
123
if (props.isMulti) {
124
- return filterMultiValue(props.options);
+ return props.options.filter((option) => (selected.value as string[]).includes(option.value));
125
}
126
127
const found = props.options.find((option) => option.value === selected.value);
0 commit comments