diff --git a/packages/vant/src/divider/README.md b/packages/vant/src/divider/README.md index e1cdbdbe9..b4b60dab6 100644 --- a/packages/vant/src/divider/README.md +++ b/packages/vant/src/divider/README.md @@ -74,7 +74,7 @@ Text | dashed | Whether to use dashed border | _boolean_ | `false` | | hairline | Whether to use hairline | _boolean_ | `true` | | content-position | Content position, can be set to `left` `right` | _string_ | `center` | -| vertical | Whether to use vertical | _boolean_ | `false` | +| vertical `v4.4.0` | Whether to use vertical | _boolean_ | `false` | ### Slots diff --git a/packages/vant/src/divider/README.zh-CN.md b/packages/vant/src/divider/README.zh-CN.md index b35e460ab..a4f926f47 100644 --- a/packages/vant/src/divider/README.zh-CN.md +++ b/packages/vant/src/divider/README.zh-CN.md @@ -79,12 +79,12 @@ app.use(Divider); ### Props -| 参数 | 说明 | 类型 | 默认值 | -| ---------------- | --------------------------------- | --------- | -------- | -| dashed | 是否使用虚线 | _boolean_ | `false` | -| hairline | 是否使用 0.5px 线 | _boolean_ | `true` | -| content-position | 内容位置,可选值为 `left` `right` | _string_ | `center` | -| vertical | 是否使用垂直 | _boolean_ | `false` | +| 参数 | 说明 | 类型 | 默认值 | +| ----------------- | --------------------------------- | --------- | -------- | +| dashed | 是否使用虚线 | _boolean_ | `false` | +| hairline | 是否使用 0.5px 线 | _boolean_ | `true` | +| content-position | 内容位置,可选值为 `left` `right` | _string_ | `center` | +| vertical `v4.4.0` | 是否使用垂直 | _boolean_ | `false` | ### Slots diff --git a/packages/vant/src/popover/README.md b/packages/vant/src/popover/README.md index 0152b2b47..bc91bbda7 100644 --- a/packages/vant/src/popover/README.md +++ b/packages/vant/src/popover/README.md @@ -283,7 +283,7 @@ export default { | --- | --- | --- | --- | | v-model:show | Whether to show Popover | _boolean_ | `false` | | actions | Actions | _PopoverAction[]_ | `[]` | -| actions-direction | Direction of actions, can be set to `horizontal` | _PopoverActionsDirection_ | `vertical` | +| actions-direction `v4.4.1` | Direction of actions, can be set to `horizontal` | _PopoverActionsDirection_ | `vertical` | | placement | Placement | _PopoverPlacement_ | `bottom` | | theme | Theme, can be set to `dark` | _PopoverTheme_ | `light` | | trigger | Trigger mode, can be set to `manual` | _PopoverTrigger_ | `click` | diff --git a/packages/vant/src/popover/README.zh-CN.md b/packages/vant/src/popover/README.zh-CN.md index 95c040e2c..96eb61c83 100644 --- a/packages/vant/src/popover/README.zh-CN.md +++ b/packages/vant/src/popover/README.zh-CN.md @@ -293,7 +293,7 @@ export default { | --- | --- | --- | --- | | v-model:show | 是否展示气泡弹出层 | _boolean_ | `false` | | actions | 选项列表 | _PopoverAction[]_ | `[]` | -| actions-direction | 选项列表的排列方向,可选值为 `horizontal` | _PopoverActionsDirection_ | `vertical` | +| actions-direction `v4.4.1` | 选项列表的排列方向,可选值为 `horizontal` | _PopoverActionsDirection_ | `vertical` | | placement | 弹出位置 | _PopoverPlacement_ | `bottom` | | theme | 主题风格,可选值为 `dark` | _PopoverTheme_ | `light` | | trigger | 触发方式,可选值为 `manual` | _PopoverTrigger_ | `click` | diff --git a/packages/vant/src/text-ellipsis/README.md b/packages/vant/src/text-ellipsis/README.md index c945fb136..5f1592914 100644 --- a/packages/vant/src/text-ellipsis/README.md +++ b/packages/vant/src/text-ellipsis/README.md @@ -91,7 +91,7 @@ export default { | content | The text displayed | _string_ | - | | expand-text | Expand operation text | _string_ | - | | collapse-text | Collapse operation text | _string_ | - | -| dots | Text content of ellipsis | _string_ | `'...'` | +| dots `v4.2.0` | Text content of ellipsis | _string_ | `'...'` | ### Events diff --git a/packages/vant/src/text-ellipsis/README.zh-CN.md b/packages/vant/src/text-ellipsis/README.zh-CN.md index d15cb0392..9bfc2f038 100644 --- a/packages/vant/src/text-ellipsis/README.zh-CN.md +++ b/packages/vant/src/text-ellipsis/README.zh-CN.md @@ -86,7 +86,7 @@ export default { | content | 需要展示的文本 | _string_ | - | | expand-text | 展开操作的文案 | _string_ | - | | collapse-text | 收起操作的文案 | _string_ | - | -| dots | 省略号的文本内容 | _string_ | `'...'` | +| dots `v4.2.0` | 省略号的文本内容 | _string_ | `'...'` | ### Events diff --git a/packages/vant/src/uploader/README.md b/packages/vant/src/uploader/README.md index ed22b0f33..268bb4e04 100644 --- a/packages/vant/src/uploader/README.md +++ b/packages/vant/src/uploader/README.md @@ -335,7 +335,7 @@ export default { | disabled | Whether to disabled the upload | _boolean_ | `false` | | readonly | Whether to make upload area readonly | _boolean_ | `false` | | deletable | Whether to show delete icon | _boolean_ | `true` | -| reupload | Whether to enable reupload, if enabled, the image preview will be disabled | _boolean_ | `false` | +| reupload `v4.4.0` | Whether to enable reupload, if enabled, the image preview will be disabled | _boolean_ | `false` | | show-upload | Whether to show upload area | _boolean_ | `true` | | lazy-load | Whether to enable lazy load, should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` | | capture | Capture, can be set to `camera` | _string_ | - | diff --git a/packages/vant/src/uploader/README.zh-CN.md b/packages/vant/src/uploader/README.zh-CN.md index 51bcb8f47..bac6f2896 100644 --- a/packages/vant/src/uploader/README.zh-CN.md +++ b/packages/vant/src/uploader/README.zh-CN.md @@ -354,7 +354,7 @@ export default { | disabled | 是否禁用文件上传 | _boolean_ | `false` | | readonly | 是否将上传区域设置为只读状态 | _boolean_ | `false` | | deletable | 是否展示删除按钮 | _boolean_ | `true` | -| reupload | 是否开启覆盖上传,开启后会关闭图片预览 | _boolean_ | `false` | +| reupload `v4.4.0` | 是否开启覆盖上传,开启后会关闭图片预览 | _boolean_ | `false` | | show-upload | 是否展示上传区域 | _boolean_ | `true` | | lazy-load | 是否开启图片懒加载,须配合 [Lazyload](#/zh-CN/lazyload) 组件使用 | _boolean_ | `false` | | capture | 图片选取模式,可选值为 `camera` (直接调起摄像头) | _string_ | - |