From 3d6a354e97b9bd024f1e7200b3b2ad156dd3a449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=81=8F?= Date: Thu, 16 Sep 2021 16:09:50 +0800 Subject: [PATCH] update Form reset --- src/components/form/form-item.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/form/form-item.vue b/src/components/form/form-item.vue index e3e05ae3..f7b1fac4 100644 --- a/src/components/form/form-item.vue +++ b/src/components/form/form-item.vue @@ -234,7 +234,7 @@ // this.validateDisabled = true; // prop.o[prop.k] = this.initialValue; // } - if (Array.isArray(value)) { + if (Array.isArray(value) && this.initialValue !== null) { this.validateDisabled = true; prop.o[prop.k] = [].concat(this.initialValue); } else {