Browse Source

【代码修复】cloneDeep 深拷贝对列表的处理错误

YunaiV 1 năm trước cách đây
mục cha
commit
dfe19ca710
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      sheep/helper/utils.js

+ 1 - 1
sheep/helper/utils.js

@@ -45,7 +45,7 @@ export function last(data) {
 }
 
 export function cloneDeep(obj) {
-  const d = isArray(obj) ? obj : {};
+  const d = isArray(obj) ? [...obj] : {};
 
   if (isObject(obj)) {
     for (const key in obj) {