1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-16 10:29:33 +02:00
uptime-kuma/src/pages/List.vue

17 lines
251 B
Vue
Raw Normal View History

2021-08-19 12:12:52 +02:00
<template>
2021-08-21 23:01:43 +02:00
<transition name="slide-fade" appear>
<MonitorList />
</transition>
2021-08-19 12:12:52 +02:00
</template>
<script>
import MonitorList from "../components/MonitorList.vue";
export default {
components: {
MonitorList,
},
}
</script>