使用vue.set() (this.$set)更新视图

更新某些List数据时 视图(页面)不会实时更新 ,需要使用 this.$set更新

第一种:
this.$set(arr, index, val)


使用vue.set() (this.$set)更新视图_第1张图片
image.png

第二种,更新list 中的object 的某一个字段
this.$set( obj, key, val)


image.png

你可能感兴趣的:(使用vue.set() (this.$set)更新视图)