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

@@ -194,8 +194,8 @@ export default defineComponent({
}
const onChange = (event: Event) => {
emit('change', (event.target as HTMLInputElement).value)
emitFormChange()
emit('change', event)
}
const guessOptionValue = (option: any) => {