fix: add form onSubmit prop

pull/3650/head
tanjinzhou 2021-02-04 17:41:35 +08:00
parent 4e4b9d6cca
commit cdac96b0bc
1 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ export const FormProps = {
validateOnRuleChange: PropTypes.looseBool,
//
scrollToFirstError: PropTypes.looseBool,
onSubmit: PropTypes.func,
onFinish: PropTypes.func,
onFinishFailed: PropTypes.func,
name: PropTypes.string,
@ -276,7 +277,7 @@ const Form = defineComponent({
const { prefixCls: customizePrefixCls, hideRequiredMark, layout, handleSubmit } = this;
const getPrefixCls = this.configProvider.getPrefixCls;
const prefixCls = getPrefixCls('form', customizePrefixCls);
const { class: className, onSubmit: originSubmit, ...restProps } = this.$attrs;
const { class: className, ...restProps } = this.$attrs;
const formClassName = classNames(prefixCls, className, {
[`${prefixCls}-horizontal`]: layout === 'horizontal',