Vue 刷新组件

参考链接:https://www.cnblogs.com/s313139232/p/9176820.html

利用v-if实现组件刷新

<template>
    <router-view v-if="isRouterAlive"/>
</template>
<script>
export default {
 data () {
   return {
     isRouterAlive: true
   }
 },
 methods: {
   reload () {
     this.isRouterAlive = false
     this.$nextTick(() => (this.isRouterAlive = true))
   }   
 }
}
</script>

然后其它任何想刷新自己的路由页面,都可以这样:
this.reload()
原文地址:https://www.cnblogs.com/aiyowei/p/15766752.html