diff --git a/packages/radix-vue/src/Combobox/ComboboxRoot.vue b/packages/radix-vue/src/Combobox/ComboboxRoot.vue index fdf50fa09..097e304b5 100644 --- a/packages/radix-vue/src/Combobox/ComboboxRoot.vue +++ b/packages/radix-vue/src/Combobox/ComboboxRoot.vue @@ -154,7 +154,10 @@ const options = ref([]) as Ref watch(() => itemMapSize.value, () => { options.value = getItems().map(i => i.value) -}, { immediate: true }) +}, { + immediate: true, + flush: 'post', +}) const filteredOptions = computed(() => { if (isUserInputted.value) {