-
Error: Avoided redundant navigation to current lacation: "/nav-list" |
Beta Was this translation helpful? Give feedback.
Answered by
hixb
Jul 11, 2022
Replies: 1 comment
-
` const originalPush = VueRouter.prototype.push |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
xiao-ice
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
`
Vue.use(VueRouter)
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
`