Files
web_ylsa/web_vue/src/pages/sys-info/yl-cpu-chart.vue
2025-07-11 16:54:11 +08:00

23 lines
394 B
Vue

<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>