关于 js 的数组操作
vue 项目中
_this.compList.push(compList)
_this.compList.push[0] = compList
第一种方法会导致数组没有__ob__ : Observer
属性,导致不能改变页面渲染
vue 项目中
_this.compList.push(compList)
_this.compList.push[0] = compList
第一种方法会导致数组没有__ob__ : Observer
属性,导致不能改变页面渲染