docs(Form): fix the type of rule trigger option (#10912)

* docs(Form): fix the type of rule trigger option

* docs: update
This commit is contained in:
neverland 2022-08-14 09:53:38 +08:00 committed by GitHub
parent e17cc35dcf
commit a06f1567db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -515,7 +515,7 @@ export default {
| message | Error message | _string \| (value, rule) => string_ |
| validator | Custom validator | _(value, rule) => boolean \| string \| Promise_ |
| pattern | Regex pattern | _RegExp_ |
| trigger | When to validate the form, can be set to `onChange``onBlur` | _string_ |
| trigger | When to validate the form, priority is higher than the `validate-trigger` of the Form component, can be set to `onChange`, `onBlur`, `onSubmit` | _string \| string[]_ |
| formatter | Format value before validate | _(value, rule) => any_ |
### validate-trigger

View File

@ -551,7 +551,7 @@ export default {
| message | 错误提示文案 | _string \| (value, rule) => string_ |
| validator | 通过函数进行校验 | _(value, rule) => boolean \| string \| Promise_ |
| pattern | 通过正则表达式进行校验 | _RegExp_ |
| trigger | 本项规则的触发时机,可选值为 `onChange``onBlur` | _string_ |
| trigger | 设置本项规则的触发时机,优先级高于 Form 组件设置的 `validate-trigger` 属性,可选值为 `onChange``onBlur``onSubmit` | _string \| string[]_ |
| formatter | 格式化函数,将表单项的值转换后进行校验 | _(value, rule) => any_ |
### validate-trigger 可选值