Error 1: Vue quickly clicks the route to jump. Error: uncaught (in promise) error: request aborted

  Solution: modify the index.html file in the router folder

Add the following fields before vue.use (vuerouter):

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

Read More: