vue强制刷新某组件(销毁并重置)

在需要强制刷新的组件中添加


 v-if="hackReset"


触发事件执行下面代码:


this.hackReset = false
this.$nextTick(() => {
this.hackReset = true
})


猜你喜欢

转载自blog.csdn.net/qq_32786139/article/details/81776654