From 06b11e63e25d5ba2b979fe9b00a44809c3ae48c9 Mon Sep 17 00:00:00 2001 From: pany <939630029@qq.com> Date: Thu, 12 Jun 2025 07:49:23 +0800 Subject: [PATCH] docs(Form): fix variable errors (#13499) --- packages/vant/src/form/README.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/src/form/README.zh-CN.md b/packages/vant/src/form/README.zh-CN.md index 53a6837cb..fd14cea90 100644 --- a/packages/vant/src/form/README.zh-CN.md +++ b/packages/vant/src/form/README.zh-CN.md @@ -476,7 +476,7 @@ export default { setup() { const result = ref(''); const showArea = ref(false); - const pickerValue = ref([]); + const pickerValue = ref(''); const onConfirm = ({ selectedValues, selectedOptions }) => { pickerValue.value = selectedValues.length ? selectedValues[selectedValues.length - 1]