- 在需要强制刷新的组件中添加
v-if="hackReset"

image.png
- 触发事件执行下面代码:
this.hackReset = false
this.$nextTick(() => {
this.hackReset = true
})

image.png
- 也可写到监听中实现强制刷新
v-if="hackReset"
this.hackReset = false
this.$nextTick(() => {
this.hackReset = true
})