去重克隆
// copyArr不会受到this.$set的影响 const copyArr = [...new Set(this.setArr)]; this.$set(this.setArr, 0, 8);
深度克隆一个数组
this.copyArr = JSON.parse(JSON.stringify(menuList));
本文作者为gengboxb,转载请注明。
// copyArr不会受到this.$set的影响 const copyArr = [...new Set(this.setArr)]; this.$set(this.setArr, 0, 8);
this.copyArr = JSON.parse(JSON.stringify(menuList));
本文作者为gengboxb,转载请注明。