16 lines
310 B
Vue
16 lines
310 B
Vue
<script setup>
|
|
|
|
import SystemInfo from '../components/SystemInfo.vue';
|
|
import SystemMetrics from '../components/SystemMetrics.vue';
|
|
import DiskUsage from '../components/DiskUsage.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="content">
|
|
<SystemInfo/>
|
|
<SystemMetrics/>
|
|
<DiskUsage />
|
|
</div>
|
|
</template>
|