vue刷新本页面
Posted 炫年华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue刷新本页面相关的知识,希望对你有一定的参考价值。
顶层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(() => (this.isRouterAlive = true)) } } } </script>
要刷新的页面代码
export default {
inject: [‘reload‘],
data() {
return {
}
},
methods: {
handleReload(){
this.reload();
}
},
}
就这样,可以愉快的刷新页面了。此刷新并不会改变vuex状态。
以上是关于vue刷新本页面的主要内容,如果未能解决你的问题,请参考以下文章