We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42afcbb commit 3ce5046Copy full SHA for 3ce5046
components/input-number/index.tsx
@@ -54,9 +54,11 @@ const InputNumber = defineComponent({
54
const handleChange = (val: number) => {
55
emit('update:value', val);
56
emit('change', val);
57
+ formItemContext.onFieldChange();
58
};
59
const handleBlur = () => {
60
emit('blur');
61
+ formItemContext.onFieldBlur();
62
63
onMounted(() => {
64
nextTick(() => {
0 commit comments