在路由文件里加入以下代码const originalPush = VueRouter.prototype.push; VueRouter.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) };
SK
Devil in My Mind.