开发环境能够正常启动
连续点击相同路由导致报错(不影响正常操作行为)
Vue中报错:NavigationDuplicated: Avoided redundant navigation to current location: "/xxx".
解决方法
在router的index.js中增加如下代码:
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}