在Vue项目中无论在当前在哪个页面上时,如果点击浏览器的刷新实现回到登陆页的方法
在 App.vue 中
this.$router.push("/"); //直接跳转至首页
beforeCreate() {}, created() { //刷新后回登陆页 this.$router.push("/"); //直接跳转 }, destroyed() {}, beforeMount() {}, mounted() { },
标签:Vue,刷新,登陆,跳转,push,router From: https://www.cnblogs.com/hailexuexi/p/16887051.html