vue2中: 

1. 首先需要修改App.vue 

App.vue

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

2. 到需要刷新的页面进行引用,使用inject导入引用reload,然后直接调用即可

Vue3中:

参考:Vue3中组件传值-【父子、兄弟、子孙】_vue3父子组件传值_疆~的博客-CSDN博客在孙中改变爷传递过来的值,则其他子孙的值都会改变。新建utils/bus.js文件。_vue3父子组件传值https://blog.csdn.net/qq_40323256/article/details/127135487

父组件: 

子组件:

如果未生效,试下setTimeout下:

    setTimeout(() => {
        reload()
    }, 100)

Logo

前往低代码交流专区

更多推荐