mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 15:24:05 +00:00
24 lines
369 B
Vue
24 lines
369 B
Vue
<template>
|
|
<transition name="slide-fade" appear>
|
|
<MonitorList :scrollbar="true" />
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
import MonitorList from "../components/MonitorList.vue";
|
|
|
|
export default {
|
|
components: {
|
|
MonitorList,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../assets/vars";
|
|
|
|
.shadow-box {
|
|
padding: 20px;
|
|
}
|
|
|
|
</style>
|