From 5e7a6a212c022f41b5b9ab750c926c4def00ebda Mon Sep 17 00:00:00 2001 From: inottn Date: Sun, 30 Apr 2023 19:49:58 +0800 Subject: [PATCH] docs(TimePicker): fix docs error (#11784) --- packages/vant/src/time-picker/README.md | 2 +- packages/vant/src/time-picker/README.zh-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/vant/src/time-picker/README.md b/packages/vant/src/time-picker/README.md index fe7791ff8..f10474c49 100644 --- a/packages/vant/src/time-picker/README.md +++ b/packages/vant/src/time-picker/README.md @@ -146,7 +146,7 @@ export default { const filter = (type, options) => { if (type === 'minute') { - return options.filter((option) => Number(option) % 10 === 0); + return options.filter((option) => Number(option.value) % 10 === 0); } return options; }; diff --git a/packages/vant/src/time-picker/README.zh-CN.md b/packages/vant/src/time-picker/README.zh-CN.md index b3e1745a9..8ce9ee266 100644 --- a/packages/vant/src/time-picker/README.zh-CN.md +++ b/packages/vant/src/time-picker/README.zh-CN.md @@ -147,7 +147,7 @@ export default { const currentTime = ref(['12', '00']); const filter = (type, options) => { if (type === 'minute') { - return options.filter((option) => Number(option) % 10 === 0); + return options.filter((option) => Number(option.value) % 10 === 0); } return options; };