mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Compare commits
4 commits
522c07f9b3
...
c9ca367cf2
Author | SHA1 | Date | |
---|---|---|---|
|
c9ca367cf2 | ||
|
17cffa7528 | ||
|
0ec4de3a13 | ||
|
92604cfe6d |
1 changed files with 3 additions and 5 deletions
|
@ -14,16 +14,15 @@ export default {
|
|||
watch: {
|
||||
"$root.isMobile"(newVal) {
|
||||
if (!newVal && this.$route.path === "/list") {
|
||||
this.$router.push("/dashboard");
|
||||
this.$router.replace({ path: "/dashboard" });
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
if (!this.$root.isMobile && this.$route.path === "/list") {
|
||||
this.$router.push("/dashboard");
|
||||
this.$router.replace({ path: "/dashboard" });
|
||||
}
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
|
@ -33,5 +32,4 @@ export default {
|
|||
.shadow-box {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue