fix(forms)!: normalize input emits (#1560)

This commit is contained in:
Romain Hamel
2024-03-25 15:36:36 +01:00
committed by GitHub
parent 7d6b5c358f
commit 92e736213b
9 changed files with 26 additions and 16 deletions

View File

@@ -120,6 +120,8 @@ export default defineComponent({
},
set (value) {
emit('update:modelValue', value)
emit('change', value)
emitFormChange()
}
})