This commit is contained in:
Manthan Ankolekar 2024-12-29 03:48:44 +00:00 committed by GitHub
commit 213f3b1747
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,11 +6,18 @@
<script>
import MonitorList from "../components/MonitorList.vue";
import mobileMixin from "../mixins/mobile.js";
export default {
components: {
MonitorList,
},
mixins: [ mobileMixin ],
created() {
if (!this.isMobile) {
this.$router.push("/dashboard");
}
},
};
</script>