Skip to content

Commit aeda263

Browse files
authored
fix(Input): Chinese input is invalid when the modifier is lazy (#7543)
1 parent f42d8ad commit aeda263

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

components/_util/BaseInput.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ const BaseInput = defineComponent({
6868
const event = document.createEvent('HTMLEvents');
6969
event.initEvent('input', true, true);
7070
e.target.dispatchEvent(event);
71+
handleChange(e);
7172
};
7273
const handleInput = (e: Event) => {
7374
if (isComposing.value && props.lazy) {

0 commit comments

Comments
 (0)