Vue中路由跳转时出现路由重复跳转的问题解决方案

第一种方案

出现这种问题是由于安装的vue-router版本太新的问题。所以第一种方案简单直接,直接在命令行中重新安装旧版本的vue-router。yarn add [email protected] -S

第二种方案

在vue-router的index.js文件中添加下列代码:
import Vue from ‘vue’;
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)