当前位置: 代码迷 >> 综合 >> Avoided redundant navigation to current location: “/tableuser“.
  详细解决方案

Avoided redundant navigation to current location: “/tableuser“.

热度:5   发布时间:2023-12-01 12:31:33.0

点击导航报错
在这里插入图片描述
router中加入

const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location) {
    return originalPush.call(this, location).catch(err => err)
}
  相关解决方案