2025-05-22 16:26:24 +02:00
|
|
|
<script setup>
|
|
|
|
|
|
2025-07-02 21:04:39 +02:00
|
|
|
import SystemInfo from '../components/SystemInfo.vue';
|
2025-10-03 17:03:13 +02:00
|
|
|
import SystemGraphs from '../components/SystemGraphs.vue';
|
2025-05-22 16:26:24 +02:00
|
|
|
import DiskUsage from '../components/DiskUsage.vue';
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="content">
|
2025-07-02 21:04:39 +02:00
|
|
|
<SystemInfo/>
|
2025-10-03 17:03:13 +02:00
|
|
|
<SystemGraphs/>
|
2025-05-22 16:26:24 +02:00
|
|
|
<DiskUsage />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|