feat(Form): formatter add rule param

This commit is contained in:
陈嘉涵
2020-02-23 19:58:37 +08:00
parent d878354ebf
commit aba946f20e
4 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -481,7 +481,7 @@ export default {
| validator `v2.5.3` | 通过函数进行校验 | *(value, rule) => boolean \| Promise* |
| pattern `v2.5.3` | 通过正则表达式进行校验 | *RegExp* |
| trigger `v2.5.2` | 本项规则的触发时机,可选值为`onChange``onBlur` | *string* |
| formatter `v2.5.3` | 格式化函数,将表单项的值转换后进行校验 | *(value) => any* |
| formatter `v2.5.3` | 格式化函数,将表单项的值转换后进行校验 | *(value, rule) => any* |
### Events