diff --git a/components/checkbox/Checkbox.tsx b/components/checkbox/Checkbox.tsx index 3c6f62f181..b0226f28ac 100644 --- a/components/checkbox/Checkbox.tsx +++ b/components/checkbox/Checkbox.tsx @@ -46,6 +46,7 @@ export default defineComponent({ const targetChecked = event.target.checked; emit('update:checked', targetChecked); emit('change', event); + formItemContext.onFieldChange(); }; const checkboxRef = ref(); const focus = () => {