This commit is contained in:
Couteau Arthur 2024-11-18 08:43:45 +00:00 committed by GitHub
commit c9ca367cf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>