diff --git a/examples/docs/en-US/form.md b/examples/docs/en-US/form.md index 834cf7193..1ab4bc00d 100644 --- a/examples/docs/en-US/form.md +++ b/examples/docs/en-US/form.md @@ -813,7 +813,7 @@ Form component allows you to verify your data, helping you find and correct erro | ---- | ---- | | validate(cb) | the method to validate the whole form | | validateField(prop, cb) | the method to validate a certain form item | -| resetFields | reset all the fields and remove validation result | +| resetFields | reset all the fields to initial value and remove validation result | ### Form-Item Attributes diff --git a/examples/docs/zh-CN/form.md b/examples/docs/zh-CN/form.md index 152c0157e..ebf7f04f9 100644 --- a/examples/docs/zh-CN/form.md +++ b/examples/docs/zh-CN/form.md @@ -803,7 +803,7 @@ |---------- |-------------- | | validate(cb) | 对整个表单进行校验的方法 | | validateField(prop, cb) | 对部分表单字段进行校验的方法 | -| resetFields | 对整个表单进行重置,将所有字段值重置为空并移除校验结果 | +| resetFields | 对整个表单进行重置,将所有字段值重置为初始值并移除校验结果 | ### Form-Item Attributes diff --git a/packages/form/README.md b/packages/form/README.md index dd1fb165a..34ca8537b 100644 --- a/packages/form/README.md +++ b/packages/form/README.md @@ -45,7 +45,7 @@ Vue.component('el-form-item', ElForm) |---------- |-------------- | | validate(cb) | 对整个表单进行校验的方法 | | validateField(prop, cb) | 对部分表单字段进行校验的方法 | -| resetFields | 对整个表单进行重置,将所有字段值重置为空并移除校验结果 | +| resetFields | 对整个表单进行重置,将所有字段值重置为初始值并移除校验结果 | ### Form-Item Attributes