diff --git a/antdv-demo/docs/form-model/index.en-US.md b/antdv-demo/docs/form-model/index.en-US.md
index cd19132ae..989ead75a 100644
--- a/antdv-demo/docs/form-model/index.en-US.md
+++ b/antdv-demo/docs/form-model/index.en-US.md
@@ -12,7 +12,7 @@
| labelCol | The layout of label. You can set `span` `offset` to something like `{span: 3, offset: 12}` or `sm: {span: 3, offset: 12}` same as with `
` | [object](/components/grid/#Col) | | |
| wrapperCol | The layout for input controls, same as `labelCol` | [object](/components/grid/#Col) | | |
| colon | change default props colon value of Form.Item (only effective when prop layout is horizontal) | boolean | true | |
-| validateOnRuleChange | whether to trigger validation when the `rules` prop is changed | boolean | true | |
+| validateOnRuleChange | whether to trigger validation when the `rules` prop is changed | boolean | false | |
### Events
diff --git a/antdv-demo/docs/form-model/index.zh-CN.md b/antdv-demo/docs/form-model/index.zh-CN.md
index 2d6636558..ef97852d9 100644
--- a/antdv-demo/docs/form-model/index.zh-CN.md
+++ b/antdv-demo/docs/form-model/index.zh-CN.md
@@ -12,7 +12,7 @@
| labelCol | label 标签布局,同 `` 组件,设置 `span` `offset` 值,如 `{span: 3, offset: 12}` 或 `sm: {span: 3, offset: 12}` | [object](/components/grid-cn/#Col) | | |
| wrapperCol | 需要为输入控件设置布局样式时,使用该属性,用法同 labelCol | [object](/components/grid-cn/#Col) | | |
| colon | 配置 Form.Item 的 colon 的默认值 (只有在属性 layout 为 horizontal 时有效) | boolean | true | |
-| validateOnRuleChange | 是否在 rules 属性改变后立即触发一次验证 | boolean | true | |
+| validateOnRuleChange | 是否在 rules 属性改变后立即触发一次验证 | boolean | false | |
### 事件
diff --git a/components/form-model/Form.jsx b/components/form-model/Form.jsx
index 9e606de9b..342875a8b 100755
--- a/components/form-model/Form.jsx
+++ b/components/form-model/Form.jsx
@@ -52,6 +52,7 @@ const Form = {
layout: 'horizontal',
hideRequiredMark: false,
colon: true,
+ validateOnRuleChange: false,
}),
Item: FormItem,
created() {