mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
17 lines
251 B
Vue
17 lines
251 B
Vue
<template>
|
|
<transition name="slide-fade" appear>
|
|
<MonitorList />
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
import MonitorList from "../components/MonitorList.vue";
|
|
|
|
export default {
|
|
components: {
|
|
MonitorList,
|
|
},
|
|
}
|
|
</script>
|
|
|