We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c4668 commit d1b5b85Copy full SHA for d1b5b85
.changeset/clever-cows-applaud.md
@@ -0,0 +1,5 @@
1
+---
2
+'vee-validate': patch
3
4
+
5
+fix: avoid triggering extra model value events closes #4461
packages/vee-validate/src/Field.ts
@@ -153,7 +153,6 @@ const FieldImpl = /** #__PURE__ */ defineComponent({
153
// If there is a v-model applied on the component we need to emit the `update:modelValue` whenever the value binding changes
154
const onChangeHandler = function handleChangeWithModel(e: Event | unknown, shouldValidate = true) {
155
handleChange(e, shouldValidate);
156
- ctx.emit('update:modelValue', value.value);
157
};
158
159
const sharedProps = computed(() => {
0 commit comments