fix: select-first to update on items change (#45)

This commit is contained in:
Hayden 2022-10-12 14:07:22 -08:00 committed by GitHub
parent a8e1d2c447
commit 1b20a69c5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,12 +74,8 @@
selectedIdx.value = idx; selectedIdx.value = idx;
} }
watch( watch(() => props.items, syncSelect);
() => props.modelValue, watch(() => props.modelValue, syncSelect);
() => {
syncSelect();
}
);
const selectedIdx = ref(0); const selectedIdx = ref(0);
watch( watch(