fix: resolve onChange issue in form component (#4890)
parent
9ddaba5333
commit
86e52ce58a
|
@ -238,6 +238,12 @@ function createComponentProps(slotProps: Record<string, any>) {
|
||||||
...slotProps.componentField,
|
...slotProps.componentField,
|
||||||
...computedProps.value,
|
...computedProps.value,
|
||||||
...bindEvents,
|
...bindEvents,
|
||||||
|
...(Reflect.has(computedProps.value, 'onChange')
|
||||||
|
? { onChange: computedProps.value.onChange }
|
||||||
|
: {}),
|
||||||
|
...(Reflect.has(computedProps.value, 'onInput')
|
||||||
|
? { onInput: computedProps.value.onInput }
|
||||||
|
: {}),
|
||||||
};
|
};
|
||||||
|
|
||||||
return binds;
|
return binds;
|
||||||
|
|
Loading…
Reference in New Issue