Vue数组检测

来源:互联网 发布:微信二级分销系统源码 编辑:程序博客网 时间:2024/05/21 06:59

Vue不能检测一下两种形式的数组更新方式,1.直接以下标index设置值的形式;2.通过数组长度来设置的形式如array.length = new

对于一下两种形式,可采用set方法:Vue.set(example1.items, indexOfItem, newValue) 或者example1.items.splice(newLength)来解决。

原创粉丝点击