Vue解决路由重复点击报错的问题

奎奎网络
2022-08-14 / 0 评论 / 5,542 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2022年08月14日,已超过869天没有更新,若内容或图片失效,请留言反馈。

router.js文件

// 加上这个
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
    return originalPush.call(this, location).catch(err => err)
}
213

最后更新时间:2022 年 08 月 14 日 04:12:10

评论 (0)

取消