fix(Form): fix FieldTypeArea demo of form (#11561)

This commit is contained in:
Gavin 2023-02-10 11:16:27 +08:00 committed by GitHub
parent ec2e12dea7
commit 0e01ea3b35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ const areaCode = ref('');
const showArea = ref(false);
const onConfirm = ({ selectedOptions }: PickerConfirmEventParams) => {
areaCode.value = selectedOptions.map((item) => item.text).join('/');
areaCode.value = selectedOptions.map((item) => item!.text).join('/');
showArea.value = false;
};