vue中局部组件刷新,可以使用 provide / inject方法,在App.vue中添加刷新方法,路由初始状态是显示的

<template>

<router-view v-if="isRouterAlive"></router-view>

</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>

在需要的组件中引入并在需要的地方调用:

 

 

 

 

 

Logo

前往低代码交流专区

更多推荐