初始化项目文件

This commit is contained in:
2025-07-11 16:54:11 +08:00
parent 6bffd582a0
commit 39fedaac16
213 changed files with 16944 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<script setup lang="ts">
import YlLine from "@/components/charts/yl-line.vue";
defineProps<{
xData: string[];
data: number[];
}>();
</script>
<template>
<div style="height: 200px; margin-bottom: 2rem">
<yl-line
:x-data="xData"
:y-data="[{ name: 'cpu', value: data }]"
per
smooth
title="CPU使用率"
/>
</div>
</template>
<style scoped></style>