From fae9a236e2d17bef63ab76527cdd5dc3309cb154 Mon Sep 17 00:00:00 2001 From: MrXwq <43991889+MrXwq@users.noreply.github.com> Date: Wed, 13 Sep 2023 08:16:58 +0800 Subject: [PATCH] docs(Picker): fix missing v-model and readonly props (#12275) Co-authored-by: xuwenqiang --- packages/vant/src/picker/README.md | 2 ++ packages/vant/src/picker/README.zh-CN.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/packages/vant/src/picker/README.md b/packages/vant/src/picker/README.md index 5fc2c4763..ff37887b8 100644 --- a/packages/vant/src/picker/README.md +++ b/packages/vant/src/picker/README.md @@ -338,6 +338,7 @@ export default { | Attribute | Description | Type | Default | | --- | --- | --- | --- | +| v-model | values of chosen option | _number[] \| string[]_ | - | | columns | Columns data | _PickerOption[] \| PickerOption[][]_ | `[]` | | columns-field-names | custom columns field | _object_ | `{ text: 'text', value: 'value', children: 'children' }` | | title | Toolbar title | _string_ | - | @@ -345,6 +346,7 @@ export default { | cancel-button-text | Text of cancel button | _string_ | `Cancel` | | toolbar-position | Toolbar position, cat be set to `bottom` | _string_ | `top` | | loading | Whether to show loading prompt | _boolean_ | `false` | +| readonly | Whether to be readonly | _boolean_ | `false` | | show-toolbar | Whether to show toolbar | _boolean_ | `true` | | allow-html | Whether to allow HTML in option text | _boolean_ | `false` | | option-height | Option height, supports `px` `vw` `vh` `rem` unit, default `px` | _number \| string_ | `44` | diff --git a/packages/vant/src/picker/README.zh-CN.md b/packages/vant/src/picker/README.zh-CN.md index e95d2655d..ffbb3ce5d 100644 --- a/packages/vant/src/picker/README.zh-CN.md +++ b/packages/vant/src/picker/README.zh-CN.md @@ -359,6 +359,7 @@ export default { | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | +| v-model | 当前选中项对应的值 | _number[] \| string[]_ | - | | columns | 对象数组,配置每一列显示的数据 | _PickerOption[] \| PickerOption[][]_ | `[]` | | columns-field-names | 自定义 `columns` 结构中的字段 | _object_ | `{ text: 'text', value: 'value', children: 'children' }` | | title | 顶部栏标题 | _string_ | - | @@ -366,6 +367,7 @@ export default { | cancel-button-text | 取消按钮文字 | _string_ | `取消` | | toolbar-position | 顶部栏位置,可选值为 `bottom` | _string_ | `top` | | loading | 是否显示加载状态 | _boolean_ | `false` | +| readonly | 是否为只读状态,只读状态下无法切换选项 | _boolean_ | `false` | | show-toolbar | 是否显示顶部栏 | _boolean_ | `true` | | allow-html | 是否允许选项内容中渲染 HTML | _boolean_ | `false` | | option-height | 选项高度,支持 `px` `vw` `vh` `rem` 单位,默认 `px` | _number \| string_ | `44` |