解决VueRoter/element-ui路由报错Error: Avoided redundant navigation to current location的问题

在router>index.js文件中增加以下代码:

const originalPush = VueRouter.prototype.push
   VueRouter.prototype.push = function push(location) {
   return originalPush.call(this, location).catch(err => err)
}

おすすめ

転載: blog.csdn.net/qq_36229632/article/details/106835290