Files
gpt-load/web/src/views/Dashboard.vue
2025-07-02 17:15:10 +08:00

16 lines
275 B
Vue

<template>
<base-info-card />
<line-chart class="chart" />
</template>
<script setup lang="ts">
import BaseInfoCard from '@/components/BaseInfoCard.vue'
import LineChart from '@/components/LineChart.vue'
</script>
<style scoped>
.chart {
margin-top: 20px;
}
</style>