vue 强制更新

this.$forceUpdate() 更新

# 在需要更新数据的位置加上下面代码
this.$forceUpdate()

nextTick()

在 Vue 中更改响应式状态时,最终的 DOM 更新并不是同步生效的,nextTick() 可以在状态改变后立即使用,以等待 DOM 更新完成

# 组件


# data
data(){
    return {
        show:true
    }
}

# 更新
this.show = false
this.$nextTick(() => {
    this.show = true;
})

你可能感兴趣的:(vue 强制更新)