vue 數組中對象添加屬性值dom不渲染

當利用索引直接設置一個項時,如vue

vm.items[indexOfItem] = newValue

vue 不能檢測到變化的數組數組

能夠用Vue.set方法,如this

for(let item of this.items){
       this.$set(item,'success',true);
   }
相關文章
相關標籤/搜索