天天看點

解決vue多次點選同一個路由報錯問題

解決vue多次點選同一個路由報錯問題

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)

}

繼續閱讀