diff --git a/components/form/FormItem.tsx b/components/form/FormItem.tsx index 1f8a1eb2e..60189eca5 100644 --- a/components/form/FormItem.tsx +++ b/components/form/FormItem.tsx @@ -327,7 +327,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; }