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