feat: 添加使用量统计和数据分析功能

This commit is contained in:
fawney19
2025-12-11 17:52:32 +08:00
parent 9c850c4f84
commit cc4e28ad16
7 changed files with 459 additions and 7 deletions

View File

@@ -188,7 +188,7 @@ const monthMarkers = computed(() => {
if (month === lastMonth) {
return
}
markers[index] = String(month + 1)
markers[index] = `${month + 1}`
lastMonth = month
})