vue router当前页面刷新后回到首页

App.vue中直接写入以下代码

在created钩子函数中判断当前路由地址是否在首页home,如果不在则替换为home页面

created() {
    
    
      if (this.$router.path !== "/home")
        this.$router.replace("home")
    }

猜你喜欢

转载自blog.csdn.net/mini_snow/article/details/122622185