[Vuejs]-Framework7 Route Protection

0👍

You have to use redirect property instead of beforeEnter.

Example (retrieved from the docs) :

redirect: function (route, resolve, reject) {
  if (true) {
    resolve('myUrl');
  }
  else reject();
}

Leave a comment