beforeRouteLeave(to, from, next) { console.log(this, to, from, next, "thissss"); if (to.fullPath == "/transfer?jumpUrl=retain") { next(); } else { this.$router.replace({ path: "/transfer", query: { jumpUrl: "retain" } }); } },