v-if
动态计算时,如果数据层级太深可能导致render
函数没有自动刷新,所以需要手动刷新。此时可以调用this.$forceUpdate()
强制刷新。
使用示例:
this.couponList[index].isSelected = true
//赋值后调用强制刷新
this.$forceUpdate()
v-if
动态计算时,如果数据层级太深可能导致render
函数没有自动刷新,所以需要手动刷新。此时可以调用this.$forceUpdate()
强制刷新。
使用示例:
this.couponList[index].isSelected = true
//赋值后调用强制刷新
this.$forceUpdate()