vue-router — Uncaught (in promise) Error: Redirected from “/login” to “/” via a navigation guard

后端 未结 6 1508
孤城傲影
孤城傲影 2020-12-11 14:38

Why is vue-router giving me this error? To be clear, the login flow works as intended but I want to a) get rid of the errro and b) understand why the error is happening.

6条回答
  •  既然无缘
    2020-12-11 15:21

    I had a similar error, but for an onboarding redirect in .beforeEach, which was resolved by replacing in the .beforeEach conditional logic:

     next({ name: "Onboarding" });
    

    with

    router.push({ path: 'Onboarding' });
    

提交回复
热议问题