Vue不能检测一下两种形式的数组更新方式,1.直接以下标index设置值的形式;2.通过数组长度来设置的形式如array.length = new
对于一下两种形式,可采用set方法:Vue.set(example1.items, indexOfItem, newValue) 或者example1.items.splice(newLength)来解决。
Vue不能检测一下两种形式的数组更新方式,1.直接以下标index设置值的形式;2.通过数组长度来设置的形式如array.length = new
对于一下两种形式,可采用set方法:Vue.set(example1.items, indexOfItem, newValue) 或者example1.items.splice(newLength)来解决。