第一种方法:
在router.js的配置文件中,Vue.use(VueRouter)下面加上如下代码:
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
以上两种方法都可以解决报错的问题.
资源均来自第三方,谨慎下载,前往第三方网站下载