mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-05 04:42:34 +02:00
31 lines
553 B
Vue
31 lines
553 B
Vue
<template>
|
|
<transition name="slide-fade" appear>
|
|
<MonitorList :scrollbar="true" />
|
|
</transition>
|
|
</template>
|
|
|
|
<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>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../assets/vars";
|
|
|
|
.shadow-box {
|
|
padding: 20px;
|
|
}
|
|
|
|
</style>
|