原因是因为vue不能检测data中数组的变动,
Vue.set() 响应式新增与修改数据
此时我们需要知道Vue.set()需要哪些参数,官方API:Vue.set()
调用方法:Vue.set( target, key, value )
target:要更改的数据源(可以是对象或者数组)
key:要更改的具体数据
value :重新赋的值
转载地址:https://www.cnblogs.com/tipsydr/p/12551761.html
原因是因为vue不能检测data中数组的变动,
Vue.set() 响应式新增与修改数据
此时我们需要知道Vue.set()需要哪些参数,官方API:Vue.set()
调用方法:Vue.set( target, key, value )
target:要更改的数据源(可以是对象或者数组)
key:要更改的具体数据
value :重新赋的值
转载地址:https://www.cnblogs.com/tipsydr/p/12551761.html