解决vue-router路由跳转的问题 message: "Navigating to current location ("/homePage") is not all

Posted web-record

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决vue-router路由跳转的问题 message: "Navigating to current location ("/homePage") is not all相关的知识,希望对你有一定的参考价值。

错误代码:

1 NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated",
message: "Navigating to current location ("/index") is not allowed",
stack: "Error↵ at new NavigationDuplicated (webpack-int…e_modules/element-ui/lib/mixins/emitter.js:29:22)"}
操作:

在VUE项目中点击两次路由切换

原因:
在路由跳转的时候同一个路由多次添加是不被允许的
解决方案(两种)

1.切换版本回3.0版本
2.在你引了vue-router的js文件里加上如下代码即可

import Vue from ‘vue‘  //如果已引用,不需要重复引用
import Router from ‘vue-router‘; //如果已引用,不需要重复引用
Vue.use(Router) //如果已引用,不需要重复引用
const VueRouterPush = Router.prototype.push 
Router.prototype.push = function push (to) {
    return VueRouterPush.call(this, to).catch(err => err)
}

 

以上是关于解决vue-router路由跳转的问题 message: "Navigating to current location ("/homePage") is not all的主要内容,如果未能解决你的问题,请参考以下文章

vue-router路由跳转原理

Vue中实现路由跳转的三种方式详细分解

vue中实现路由跳转的三种方式(超详细整理)

vue-router 钩子函数 (beforeEach、afterEach、beforeEnter)

VueJs路由跳转——vue-router的使用

VueJs路由跳转——vue-router的使用