[Vuejs]-Skip last child of router in vue

0👍

In the if condition you should use double & to compare the values :


if (to.name === "onboarding/3" && noCC) {
     next({ path: "/dashboard" });
   }

Leave a comment