Vue's beforeRouteLeave hook, I now click on all will use the hook function, can you remove the next hook function, as shown in the figure



Mar.18,2021

define a variable clickNextBtn , which defaults to false . Click the next button clickNextBtn=true . Then

beforeRouteLeave (to, from, next) {
    if (this.clickNextBtn) {
        next()
    } else {
        this.$confirm(...)
    }
}
Menu