docs(Form): fix show-error version tag (#6012)

This commit is contained in:
chenjiahan 2020-04-08 13:20:54 +08:00
parent 525f7ecb88
commit 7cff3de052
2 changed files with 2 additions and 2 deletions

View File

@ -432,7 +432,7 @@ export default {
| colon | Whether to display `:` after label | *boolean* | `false` |
| validate-first | Whether to stop the validation when a rule fails | *boolean* | `false` |
| scroll-to-error `v2.5.2` | Whether to scroll to the error field when validation failed | *boolean* | `false` |
| show-error `v2.5.9` | Whether to highlight input when validation failed | *boolean* | `true` |
| show-error `v2.6.0` | Whether to highlight input when validation failed | *boolean* | `true` |
| show-error-message `v2.5.8` | Whether to show error message when validation failed | *boolean* | `true` |
### Data Structure of Rule

View File

@ -467,7 +467,7 @@ export default {
| colon | 是否在 label 后面添加冒号 | *boolean* | `false` |
| validate-first | 是否在某一项校验不通过时停止校验 | *boolean* | `false` |
| scroll-to-error `v2.5.2` | 是否在提交表单且校验不通过时滚动至错误的表单项 | *boolean* | `false` |
| show-error `v2.5.9` | 是否在校验不通过时标红输入框 | *boolean* | `true` |
| show-error `v2.6.0` | 是否在校验不通过时标红输入框 | *boolean* | `true` |
| show-error-message `v2.5.8` | 是否在校验不通过时在输入框下方展示错误提示 | *boolean* | `true` |
> 表单项的 API 参见:[Field 组件](#/zh-CN/field#api)