Vue 刷新后回登陆页

在Vue项目中无论在当前在哪个页面上时,如果点击浏览器的刷新实现回到登陆页的方法

 

 在 App.vue 中

 this.$router.push("/"); //直接跳转至首页

beforeCreate() {},
created() {
    
    //刷新后回登陆页
    this.$router.push("/"); //直接跳转 
   
},
destroyed() {},
beforeMount() {},
mounted() {
    
},

 

posted @ 2022-11-13 21:35  海乐学习  阅读(715)  评论(0编辑  收藏  举报