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