Vue数组改变视图不更新

2018-08-15  本文已影响0人  马小帅mm

无效

this.array[index] = value;
this.array.length = 2; 

正确方法,vue会触发视图更新

this.array.$set(index, value);
this.array.push(value);

数组操作

push()
pop()
shift()
unshift()
splice()  //注意长度会变化
sort()
reverse()
上一篇 下一篇

猜你喜欢

热点阅读