We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f42d8ad commit aeda263Copy full SHA for aeda263
components/_util/BaseInput.tsx
@@ -68,6 +68,7 @@ const BaseInput = defineComponent({
68
const event = document.createEvent('HTMLEvents');
69
event.initEvent('input', true, true);
70
e.target.dispatchEvent(event);
71
+ handleChange(e);
72
};
73
const handleInput = (e: Event) => {
74
if (isComposing.value && props.lazy) {
0 commit comments