docs(Form): fix error variable of the form (#11560)
This commit is contained in:
@@ -436,7 +436,7 @@ export default {
|
|||||||
const showArea = ref(false);
|
const showArea = ref(false);
|
||||||
const onConfirm = ({ selectedOptions }) => {
|
const onConfirm = ({ selectedOptions }) => {
|
||||||
showArea.value = false;
|
showArea.value = false;
|
||||||
areaCode.value = selectedOptions.map((item) => item.text).join('/');
|
result.value = selectedOptions.map((item) => item.text).join('/');
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -466,7 +466,7 @@ export default {
|
|||||||
const showArea = ref(false);
|
const showArea = ref(false);
|
||||||
const onConfirm = ({ selectedOptions }) => {
|
const onConfirm = ({ selectedOptions }) => {
|
||||||
showArea.value = false;
|
showArea.value = false;
|
||||||
areaCode.value = selectedOptions.map((item) => item.text).join('/');
|
result.value = selectedOptions.map((item) => item.text).join('/');
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user