// 解决重复点击路由报错的BUG ```js const originalPush = VueRouter.prototype.push; VueRouter.prototype.push = function push(location) { return originalPush.call(this, location).catch((err) => err); }; ```
// 解决重复点击路由报错的BUG