码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-05-27 15:14:34      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:duplicate   操作   nav   font   cal   col   homepage   tac   解决方案   

错误代码:

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 allowed",警告的问题

标签:duplicate   操作   nav   font   cal   col   homepage   tac   解决方案   

原文地址:https://www.cnblogs.com/web-record/p/12972939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!