uptime-kuma/src/pages/Dashboard.vue

38 lines
917 B
Vue
Raw Normal View History

2021-06-25 06:55:49 -07:00
<template>
<div class="container-fluid">
<div class="row">
<div v-if="! $root.isMobile" class="col-12 col-md-5 col-xl-4">
<div>
<router-link to="/add" class="btn btn-primary mb-3"><font-awesome-icon icon="plus" /> {{ $t("Add New Monitor") }}</router-link>
2021-06-25 06:55:49 -07:00
</div>
2021-09-01 10:56:02 -07:00
<MonitorList :scrollbar="true" />
2021-06-25 06:55:49 -07:00
</div>
2021-08-29 11:22:49 -07:00
<div class="col-12 col-md-7 col-xl-8 mb-3">
<!-- Add :key to disable vue router re-use the same component -->
<router-view :key="$route.fullPath" />
2021-06-25 06:55:49 -07:00
</div>
</div>
</div>
</template>
<script>
import MonitorList from "../components/MonitorList.vue";
2021-06-27 01:10:55 -07:00
2021-06-25 06:55:49 -07:00
export default {
components: {
MonitorList,
2021-06-25 06:55:49 -07:00
},
data() {
2022-04-13 09:30:32 -07:00
return {};
2021-06-25 06:55:49 -07:00
},
2022-04-13 09:30:32 -07:00
};
2021-06-25 06:55:49 -07:00
</script>
<style lang="scss" scoped>
2021-06-25 06:55:49 -07:00
.container-fluid {
2021-08-24 08:38:25 -07:00
width: 98%;
2021-06-25 06:55:49 -07:00
}
</style>