From 3268d522bb3121a3465d0a3673cd93790ef96112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=B1=E7=9C=A0=E4=BB=AA=E5=BC=8F?= <854085467@qq.com> Date: Wed, 13 Oct 2021 14:13:04 +0800 Subject: [PATCH] =?UTF-8?q?document(component):=20=E6=9B=B4=E6=96=B0=20inp?= =?UTF-8?q?ut=20=E5=92=8C=20radio=20=E7=BB=84=E4=BB=B6=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/zh-CN/components/checkbox.md | 3 ++- docs/docs/zh-CN/components/input.md | 10 +++++++++- docs/docs/zh-CN/components/radio.md | 9 ++++++++- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/docs/docs/zh-CN/components/checkbox.md b/docs/docs/zh-CN/components/checkbox.md index a1bdf5cb..f77654b7 100644 --- a/docs/docs/zh-CN/components/checkbox.md +++ b/docs/docs/zh-CN/components/checkbox.md @@ -132,5 +132,6 @@ export default { | -------- | ---- | ----------------------- | | name | 原始属性 name | -- | | skin | 主题 | -- | -| label | 选中值 | -- | +| label | 选中值 | -- | +| checked ( v-model ) | 是否选中 | `true` `false` | | change | 切换事件 | isChecked : 当前状态 | \ No newline at end of file diff --git a/docs/docs/zh-CN/components/input.md b/docs/docs/zh-CN/components/input.md index 34f2e3a8..ff40754b 100644 --- a/docs/docs/zh-CN/components/input.md +++ b/docs/docs/zh-CN/components/input.md @@ -66,4 +66,12 @@ export default { } -::: \ No newline at end of file +::: + + +| Name | Description | Accepted Values | +| -------- | ---- | ----------------------- | +| name | 原始属性 name | -- | +| placeholder | 提示信息 | -- | +| v-model | 值 | -- | +| input | 原生 input 事件 | val : 当前值 | \ No newline at end of file diff --git a/docs/docs/zh-CN/components/radio.md b/docs/docs/zh-CN/components/radio.md index d681dce0..57c5637d 100644 --- a/docs/docs/zh-CN/components/radio.md +++ b/docs/docs/zh-CN/components/radio.md @@ -83,4 +83,11 @@ export default { } -::: \ No newline at end of file +::: + +| Name | Description | Accepted Values | +| -------- | ---- | ----------------------- | +| name | 原始属性 name | -- | +| label | 当前值 | -- | +| v-model | 选中值 | -- | +| change | 切换事件 | current : 当前值 | \ No newline at end of file