--------------------------------------------------App.vue--------------------------------------------------
<router-view v-if="isRouterAlive"/>
export default{
provide () {
return {
reload: this.reload
}
},
data(){
return{
isRouterAlive: true
}
},
methods:{
//重载
reload () {
this.isRouterAlive = false
this.$nextTick(function () {
this.isRouterAlive = true
});
}
}
}
--------------------------------------------------需要用到刷新的页面--------------------------------------------------
image
调用:this.reload();
网友评论