Vue数组更新检测 #tags: Vue
变异方法:
push()
pop()
shift()
unshift()
splice()
sort()
reverse()
重塑数组:
filter(), concat(), slice()
其他操作:
利用索引修改某一项数据:
Vue.set(example1.items, indexOfItem, newValue)
更改数组长度:
example1.items.splice(indexOfItem, 1, newValue)