1.首先,要修改下你的app.vue
<template><div id="app"><router-view v-if="isRouterAlive"></router-view></div>
</template><script>export default {name: 'App',provide(){return{reload: this.reload}},data (){return{isRouterAlive: true}},methods: {reload(){this.isRouterAlive = false;this.$nextTick(function(){this.isRouterAlive = true;})}}}
</script><style>
</style>
通过声明reload方法,控制router-view的显示或隐藏,从而控制页面的再次加载,这边定义了 isRouterAlive //true or false 来控制。
2. 然后在需要当前页面刷新的页面中注入App.vue组件提供(provide)的 reload 依赖。
3.然后直接用this.reload来调用就行。
this.reload()