From 1095e36bc30399e0070a75ee31264d839471a15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Thu, 13 Feb 2020 11:16:21 +0800 Subject: [PATCH] docs(Form): add basic API description --- src/form/README.md | 18 +++++++++++++--- src/form/README.zh-CN.md | 44 ++++++++++++++++++++++++---------------- 2 files changed, 42 insertions(+), 20 deletions(-) diff --git a/src/form/README.md b/src/form/README.md index a5910a0f2..0d0a44fa7 100644 --- a/src/form/README.md +++ b/src/form/README.md @@ -404,15 +404,27 @@ export default { ### Props | Attribute | Description | Type | Default | -| --------- | ----------- | ---- | ------- | - +|------|------|------|------| +| validate-first | Whether to stop the validation when a rule fails | *boolean* | `false` | ### Events | Event | Description | Arguments | +|------|------|------| +| submit | Triggered after submitting the form and validation passed | *values: object* | +| failed | Triggered after submitting the form and validation failed | *errorInfo: { values: object, errors: object[] }* | + +### Methods + +Use [ref](https://vuejs.org/v2/api/#ref) to get Form instance and call instance methods + +| Name | Description | Attribute | Return value | +|------|------|------|------| +| validate | Trigger validation | - | *Promise\* | +| resetValidation | Reset all validation | - | - | ### Slots | Name | Description | | ---- | ----------- | - +| default | Form content | diff --git a/src/form/README.zh-CN.md b/src/form/README.zh-CN.md index cea9b981b..4f9b47139 100644 --- a/src/form/README.zh-CN.md +++ b/src/form/README.zh-CN.md @@ -17,7 +17,7 @@ Vue.use(Form); ### 基础用法 -在表单中,每个 [Field](#/zh-CN/field) 代表一个表单项,使用 Field 的`rules`属性可以定义校验规则 +在表单中,每个 [Field 组件](#/zh-CN/field) 代表一个表单项,使用 Field 的`rules`属性可以定义校验规则 ```html @@ -122,7 +122,7 @@ export default { ### 表单项类型 - 开关 -在表单中使用 [Switch](#/zh-CN/switch) 组件 +在表单中使用 [Switch 组件](#/zh-CN/switch) ```html @@ -142,7 +142,7 @@ export default { ### 表单项类型 - 复选框 -在表单中使用 [Checkbox](#/zh-CN/checkbox) 组件 +在表单中使用 [Checkbox 组件](#/zh-CN/checkbox) ```html @@ -173,7 +173,7 @@ export default { ### 表单项类型 - 单选框 -在表单中使用 [Radio](#/zh-CN/radio) 组件 +在表单中使用 [Radio 组件](#/zh-CN/radio) ```html @@ -196,7 +196,7 @@ export default { ### 表单项类型 - 步进器 -在表单中使用 [Stepper](#/zh-CN/stepper) 组件 +在表单中使用 [Stepper 组件](#/zh-CN/stepper) ```html @@ -216,7 +216,7 @@ export default { ### 表单项类型 - 评分 -在表单中使用 [Rate](#/zh-CN/rate) 组件 +在表单中使用 [Rate 组件](#/zh-CN/rate) ```html @@ -236,7 +236,7 @@ export default { ### 表单项类型 - 滑块 -在表单中使用 [Slider](#/zh-CN/slider) 组件 +在表单中使用 [Slider 组件](#/zh-CN/slider) ```html @@ -256,7 +256,7 @@ export default { ### 表单项类型 - 文件上传 -在表单中使用 [Uploader](#/zh-CN/uploader) 组件 +在表单中使用 [Uploader 组件](#/zh-CN/uploader) ```html @@ -276,7 +276,7 @@ export default { ### 表单项类型 - 选择器 -在表单中使用 [Picker](#/zh-CN/picker) 组件 +在表单中使用 [Picker 组件](#/zh-CN/picker) ```html * | +| resetValidation | 重置所有表单验证提示 | - | - | ### Slots | 名称 | 说明 | -| ---- | ---- | - +|------|------| +| default | 表单内容 |