解决vue多次点击同一个路由报错问题
Router.prototype.replace = function push(location) {return originalPush.call(this, location).catch(err => err)}const originalReplace = Router.prototype.pushRouter.prototype.push = function push...
·
Router.prototype.replace = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
const originalReplace = Router.prototype.push
Router.prototype.push = function push(location) {
return originalReplace.call(this, location).catch(err => err)
}
更多推荐
已为社区贡献1条内容
所有评论(0)