vue-cli 出现导航重复解决方法

在你的路由文件里加上即可

const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
原文地址:https://www.cnblogs.com/kaibindirver/p/15456504.html