diff --git a/components/form/FormItem.tsx b/components/form/FormItem.tsx index 28d983454..f914cd7b2 100644 --- a/components/form/FormItem.tsx +++ b/components/form/FormItem.tsx @@ -308,7 +308,7 @@ export default defineComponent({ const value = fieldValue.value; const prop = getPropByPath(model, namePath.value, true); if (Array.isArray(value)) { - prop.o[prop.k] = [].concat(initialValue.value); + prop.o[prop.k] = [].concat(initialValue.value ?? []); } else { prop.o[prop.k] = initialValue.value; }