docs(Form): fix variable errors (#13499)

This commit is contained in:
pany
2025-06-12 07:49:23 +08:00
committed by GitHub
parent 5761938acb
commit 06b11e63e2

View File

@@ -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]