第一步:App.vue中修改
<template>
<div id="app">
<div class="wrap">
<router-view v-if="isRouterAlive"></router-view>
</div>
</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>
第二步
注意:在data上边
export default {
inject: ["reload"],
}
data(){
return(){
}
}
第三步 使用
当然 直接使用this.reload();即可 这里为了好看定义了个方法
// 成功消息提出
refresh() {
console.log("调用了刷新方法");
this.reload();
},