chore: add goroutine num display

This commit is contained in:
engigu
2025-12-27 13:54:20 +08:00
parent e22d285add
commit ec882de420
3 changed files with 7 additions and 0 deletions
+4
View File
@@ -60,6 +60,10 @@ onMounted(loadAbout)
<span class="text-muted-foreground text-sm">内存使用:</span>
<span class="text-sm">{{ aboutInfo?.mem_usage || '-' }}</span>
</div>
<div class="flex justify-between items-center">
<span class="text-muted-foreground text-sm">协程数量:</span>
<span class="text-sm">{{ aboutInfo?.goroutines || '-' }}</span>
</div>
<div class="flex justify-between items-center">
<span class="text-muted-foreground text-sm">运行时间:</span>
<span class="text-sm">{{ aboutInfo?.uptime || '-' }}</span>