diff --git a/src/runtime/components/InputMenu.vue b/src/runtime/components/InputMenu.vue index 97a0a35b..8658b1db 100644 --- a/src/runtime/components/InputMenu.vue +++ b/src/runtime/components/InputMenu.vue @@ -344,6 +344,7 @@ function onRemoveTag(event: any) { const modelValue = props.modelValue as GetModelValue const filteredValue = modelValue.filter(value => !isEqual(value, event)) emits('update:modelValue', filteredValue as GetModelValue) + onUpdate(filteredValue) } }