uptime-kuma/src/pages/List.vue

17 lines
251 B
Vue
Raw Normal View History

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