Files
cloudron-box/dashboard/src/views/ServerView.vue
Girish Ramakrishnan 32f4b72d68 rename views
2025-10-05 10:45:38 +02:00

16 lines
307 B
Vue

<script setup>
import SystemInfo from '../components/SystemInfo.vue';
import SystemGraphs from '../components/SystemGraphs.vue';
import DiskUsage from '../components/DiskUsage.vue';
</script>
<template>
<div class="content">
<SystemInfo/>
<SystemGraphs/>
<DiskUsage />
</div>
</template>