feat: 增加各个模块

This commit is contained in:
2026-08-24 22:58:08 +08:00
parent d0113394ec
commit 8ff7d4548e
32 changed files with 3019 additions and 188 deletions

18
src/store/profile.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineStore } from 'pinia'
import type { IProfile } from '@/utils/profile'
export const useProfileStore = defineStore('profile', {
state: () => ({
showProfilePopup: false,
profileForm: {
gender: '',
height: 0,
name: '',
weight: 0,
} as IProfile,
isRefresh: false,
}),
actions: {
},
})