mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
replace router.push into router.replace 🐓
This commit is contained in:
parent
ffa8aad019
commit
92604cfe6d
3 changed files with 17455 additions and 17457 deletions
|
@ -14,16 +14,15 @@ export default {
|
||||||
watch: {
|
watch: {
|
||||||
"$root.isMobile"(newVal) {
|
"$root.isMobile"(newVal) {
|
||||||
if (!newVal && this.$route.path === "/list") {
|
if (!newVal && this.$route.path === "/list") {
|
||||||
this.$router.push("/dashboard");
|
this.$router.replace({ path: "/dashboard" });
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
if (!this.$root.isMobile && this.$route.path === "/list") {
|
if (!this.$root.isMobile && this.$route.path === "/list") {
|
||||||
this.$router.push("/dashboard");
|
this.$router.replace({ path: "/dashboard" });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -33,5 +32,4 @@ export default {
|
||||||
.shadow-box {
|
.shadow-box {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue