From c0c0bdce17c21a2309cca54345ced97b6dd800fc Mon Sep 17 00:00:00 2001 From: lllomh Date: Thu, 21 Sep 2023 20:47:33 +0800 Subject: [PATCH] docs(Picker): fix popup content is inconsistent with the Chinese version (#12300) * fix(Picker): fix bug the content of the popup window is not consistent with the Chinese version under the English version * fix(Picker): Fix the issue that scroll wheel selection list is not supported on pc * fix(Picker): Rollback of new commits last one --- packages/vant/src/picker/demo/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/vant/src/picker/demo/index.vue b/packages/vant/src/picker/demo/index.vue index cb36a9101..c6353ceb9 100644 --- a/packages/vant/src/picker/demo/index.vue +++ b/packages/vant/src/picker/demo/index.vue @@ -44,8 +44,7 @@ const t = useTranslate({ multipleColumns: 'Multiple Columns', customChildrenKey: 'Custom Columns Fields', customChildrenColumns: customKeyColumns['en-US'], - toastContent: (value: string, index: number) => - `Value: ${value}, Index:${index}`, + toastContent: (value: string) => `Value: ${value}`, }, });