uptime-kuma/src/pages/List.vue

17 lines
251 B
Vue
Raw Normal View History

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