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

View File

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