1.解决重复点击相同路由报错,比如菜单导航重复点击
在路由配置页面写入这个就好了
Vue.use(VueRouter);
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
1.解决重复点击相同路由报错,比如菜单导航重复点击
在路由配置页面写入这个就好了
Vue.use(VueRouter);
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}