mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-16 10:29:33 +02:00
15 lines
187 B
Vue
15 lines
187 B
Vue
|
<template>
|
||
|
<MonitorList />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import MonitorList from "../components/MonitorList.vue";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
MonitorList,
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|