From 4dfd1fafb8fa045a4df380483df04bea34ad6f89 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sun, 11 Jun 2023 22:31:43 +0800 Subject: [PATCH] docs(TimePicker): fix invalid code block --- packages/vant/src/address-list/README.md | 2 +- packages/vant/src/address-list/README.zh-CN.md | 2 +- packages/vant/src/time-picker/README.md | 11 +++++------ packages/vant/src/time-picker/README.zh-CN.md | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/packages/vant/src/address-list/README.md b/packages/vant/src/address-list/README.md index c78f169e7..fcc4f1572 100644 --- a/packages/vant/src/address-list/README.md +++ b/packages/vant/src/address-list/README.md @@ -90,7 +90,7 @@ export default { | switchable | Whether to allow switch address | _boolean_ | `true` | | add-button-text | Add button text | _string_ | `Add new address` | | default-tag-text | Default tag text | _string_ | - | -| right-icon `v4.4.2` | Right Icon | _string_ | `edit` | +| right-icon `v4.5.0` | Right Icon | _string_ | `edit` | ### Events diff --git a/packages/vant/src/address-list/README.zh-CN.md b/packages/vant/src/address-list/README.zh-CN.md index 37eda17ca..d98004882 100644 --- a/packages/vant/src/address-list/README.zh-CN.md +++ b/packages/vant/src/address-list/README.zh-CN.md @@ -90,7 +90,7 @@ export default { | switchable | 是否允许切换地址 | _boolean_ | `true` | | add-button-text | 底部按钮文字 | _string_ | `新增地址` | | default-tag-text | 默认地址标签文字 | _string_ | - | -| right-icon `v4.4.2` | 右侧图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | `edit` | +| right-icon `v4.5.0` | 右侧图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | `edit` | ### Events diff --git a/packages/vant/src/time-picker/README.md b/packages/vant/src/time-picker/README.md index acd3ad209..e46919405 100644 --- a/packages/vant/src/time-picker/README.md +++ b/packages/vant/src/time-picker/README.md @@ -173,7 +173,7 @@ Using `min-time` and `max-time` props to limit the time range, Convention format /> ``` -````js +```js import { ref } from 'vue'; export default { @@ -182,8 +182,7 @@ export default { return { currentTime }; }, }; - - +``` ### Advanced Usage @@ -191,7 +190,7 @@ The third parameter of the `filter` function can get the currently selected time ```html -```` +``` ```js export default { @@ -241,8 +240,8 @@ export default { | max-minute | Max minute | _number \| string_ | `59` | | min-second | Min second | _number \| string_ | `0` | | max-second | Max second | _number \| string_ | `59` | -| min-time `v4.4.2` | Min time, format reference `07:40:00`, `min-hour` `min-minute` `min-second` is invalid when used | _string_ | - | -| max-time `v4.4.2` | Max time, format reference `10:20:00`, `min-hour` `min-minute` `max-second` is invalid when used | _string_ | - | +| min-time `v4.5.0` | Min time, format reference `07:40:00`, `min-hour` `min-minute` `min-second` is invalid when used | _string_ | - | +| max-time `v4.5.0` | Max time, format reference `10:20:00`, `min-hour` `min-minute` `max-second` is invalid when used | _string_ | - | | title | Toolbar title | _string_ | `''` | | confirm-button-text | Text of confirm button | _string_ | `Confirm` | | cancel-button-text | Text of cancel button | _string_ | `Cancel` | diff --git a/packages/vant/src/time-picker/README.zh-CN.md b/packages/vant/src/time-picker/README.zh-CN.md index c38ff3a19..dfde91342 100644 --- a/packages/vant/src/time-picker/README.zh-CN.md +++ b/packages/vant/src/time-picker/README.zh-CN.md @@ -241,8 +241,8 @@ export default { | max-minute | 可选的最大分钟 | _number \| string_ | `59` | | min-second | 可选的最小秒数 | _number \| string_ | `0` | | max-second | 可选的最大秒数 | _number \| string_ | `59` | -| min-time `v4.4.2` | 可选的最小时间,格式参考 `07:40:00`,使用时 `min-hour` `min-minute` `min-second` 无效 | _string_ | - | -| max-time `v4.4.2` | 可选的最大时间,格式参考 `10:20:00`,使用时 `max-hour` `max-minute` `max-second` 无效 | _string_ | - | +| min-time `v4.5.0` | 可选的最小时间,格式参考 `07:40:00`,使用时 `min-hour` `min-minute` `min-second` 无效 | _string_ | - | +| max-time `v4.5.0` | 可选的最大时间,格式参考 `10:20:00`,使用时 `max-hour` `max-minute` `max-second` 无效 | _string_ | - | | title | 顶部栏标题 | _string_ | `''` | | confirm-button-text | 确认按钮文字 | _string_ | `确认` | | cancel-button-text | 取消按钮文字 | _string_ | `取消` |