Vue中报错: Uncaught (in promise) Error:Redirected when going from “x“ to “x“ via a navigation guard
项目中遇到如图的错误是因为router的版本问题和vue/lic有冲突解决方法:删除 node_modules ,到 package.json 中将 vue-router 改为最新稳定版 ,当然vue/cli也要是最新版,重新 npm i (未测试)// 解决router版本过高重复点击路由控制台报错问题const originalPush = VueRouter.prototype.pushVu
·
项目中遇到如图的错误
是因为router的版本问题 和vue/lic有冲突
解决方法:
- 删除 node_modules ,到 package.json 中将 vue-router 改为最新稳定版 ,当然vue/cli也要是最新版,重新 npm i (未测试)
- // 解决router版本过高 重复点击路由控制台报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
更多推荐
已为社区贡献1条内容
所有评论(0)