在VUE中路由遇到Error: Avoided redundant navigation to current location:報錯顯示是路由重復,

於是查了一下發現可以這樣解決
router文件夾下面的index.js中加上下面幾句代碼
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}

