vue $set(itemValue, fieldKey, value) 更新数据,视图不更新

通过this.$set() 更新数据,数据是更新成功了,视图不更新

解决办法,在后面 调用 this.$forceUpdate() 方法,成功更新视图

this.$set(itemValue, fieldKey, value)
this.$forceUpdate()
原文地址:https://www.cnblogs.com/ybixian/p/14781518.html