在vue项目中遇到的小问题,问题描述:跳转到与当前页面相同的路由时报错。例如,当前页面路径为/admin/home,触发点击事件跳转路由为/admin/home时会报错,如下:
解决:在router文件下的index.js中添加如下代码:
import Router from 'vue-router'
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
Vue.use(Router)