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; };