diff --git a/components/_util/BaseInput.tsx b/components/_util/BaseInput.tsx index b01256715..4650d80e6 100644 --- a/components/_util/BaseInput.tsx +++ b/components/_util/BaseInput.tsx @@ -68,6 +68,7 @@ const BaseInput = defineComponent({ const event = document.createEvent('HTMLEvents'); event.initEvent('input', true, true); e.target.dispatchEvent(event); + handleChange(e); }; const handleInput = (e: Event) => { if (isComposing.value && props.lazy) {