vue中路由跳转报错
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
Error: Avoided redundant navigation to current location: "/X".
解决:在router文件夹下的index.js中加入代码:
import Vue from 'vue'
import Router from 'vue-router'
import Chat from '../components/Chat.vue'
import User from '../components/User.vue'
import Find from '../components/Find.vue'
import My from '../components/My.vue'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
component: Chat
},
{
path: '/User',
component: User
},
{
path: '/Find',
component: Find
},
{
path: '/My',
component: My
}
]
})
// 解决报错的代码
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
GitHub 加速计划 / vu / vue
83
16
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
9e887079
[skip ci] 3 个月前
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)