用如下方式处理:
import Vue from "vue"; import VueRouter from "vue-router"; /* === */ const originalPush = VueRouter.prototype.push; //修改原型对象中的push方法 VueRouter.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err); }; /* === */ Vue.use(VueRouter);
上一篇:H5-html默认格式
下一篇:JS乘除运算出现多位小数