Compare commits
11 Commits
341bcb314f
...
309f83cf1f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
309f83cf1f | ||
|
|
8737613567 | ||
|
|
22aafb8da4 | ||
|
|
0072407be5 | ||
|
|
25f873de7e | ||
|
|
22fb44c914 | ||
|
|
21f86e33b6 | ||
|
|
4371f8b38c | ||
|
|
62a9a7bc1e | ||
|
|
9d06c8e131 | ||
|
|
045f7a9a81 |
@@ -17,7 +17,7 @@ const props = defineProps<{
|
||||
const { cpuUsage, memUsage, diskUsage, runningTime, cpuUsageLabel, memUsageLabel, diskUsageLabel, runningTimeLabel } = toRefs(props);
|
||||
|
||||
const showCard = computed(() => {
|
||||
return Object.values({ cpuUsage, memUsage, diskUsage, runningTime }).some((value) => !!value);
|
||||
return Object.values({ cpuUsage, memUsage, diskUsage, runningTime }).some((refValue) => !!refValue.value);
|
||||
});
|
||||
|
||||
const cpuPercent = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user