feat: 增加记录日历功能

This commit is contained in:
2026-08-27 15:11:55 +08:00
parent 0b94b74c88
commit 4844121584
93 changed files with 11385 additions and 90 deletions

10
src/store/app.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineStore } from 'pinia'
export const useAppStore = defineStore('app', {
state: () => ({
viewRecordType: 'calendar',
}),
actions: {
},
})