vue-router重复push报错解决
一、报错情况
情况复现:使用router跳转时,router会有一个历史记录栈,当新的push元素和上一次最后push的元素一致,那么会报以下错误
vue-router.esm.js:1675 Uncaught (in promise)
NavigationDuplicated {_name: 'NavigationDuplicated', name: 'NavigationDuplicated'}
name
:
"NavigationDuplicated"
_name
:
"NavigationDuplicated"
[[Prototype]]
:
Error
二、解决
1、重写push方法
在router的index.js中重写push方法
// 重写push方法
const originalPush = VueRouter.prototype.push