Vue—— Error: Redirected when going from “/“ to “/directory/tree“ via a navigation guard


209150;”

/src/router/index.js:

const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location, onResolve, onReject) {
  if (onResolve || onReject)
    return originalPush.call(this, location, onResolve, onReject);
  return originalPush.call(this, location).catch(err => err);
};

Read More: