vue项目报错vue-router.esm.js?8b48:2007 Uncaught (in promise)

今天做vue项目时,当我多次点击跳转路由的时候,控制台报错:

两种解决方案:

方法一:

原因可能是在重新下载依赖包时,安装的vue-router还是之前出错的那个版本,在项目目录下运行 npm i [email protected] -S 即可。

方法二:

在main.js中添加以下代码:

import VueRouter from 'vue-router';
const routerPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return routerPush.call(this, location).catch(error=> error)
}

 

你可能感兴趣的:(vue)