Vue2和Vue3中vue-router的使用

vue2


vue3


使用

vue2使用vue-router在当前路由下继续访问当前路由报错

可以在router下面的index.js添加以下代码

  const originalPush = VueRouter.prototype.push;
  VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}
posted @ 2024-11-20 17:46  韩德才  阅读(1)  评论(0编辑  收藏  举报