1.路由创建之后发现控制台push路由跳转报错了 2.解决方法: //在router文件中添加 const originalPush = VueRouter.prototype.push VueRouter.prototype.push = function push(location) {return originalPush.call(this, location).catch(err => err) } 3.解决了