第一种方法:
在路由的index.js文件中添加如下代码:
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
第二种方法:
将vue-router的版本降到3.0
yarn add vue-router@3.0
两种方法都可以解决报错的问题.