vue-particles icon indicating copy to clipboard operation
vue-particles copied to clipboard

vue严格模式下arguments不可使用,能否换成命名函数来解决

Open WYinGYA opened this issue 2 years ago • 1 comments

Object.deepExtend = (function f(destination, source){ for (var property in source) { if (source[property] && source[property].constructor && source[property].constructor === Object) { destination[property] = destination[property] || {}; f(destination[property], source[property]); } else { destination[property] = source[property]; } } return destination; })

WYinGYA avatar Apr 24 '22 04:04 WYinGYA

同样的问题,解决没有 @WYinGYA

YellRes avatar Nov 29 '23 06:11 YellRes