This commit is contained in:
2026-08-17 11:01:21 +08:00
parent 6e07cab51f
commit 255573ed06
705 changed files with 8762 additions and 36677 deletions
+22
View File
@@ -0,0 +1,22 @@
/**
* Pinia 状态管理入口 - 支持持久化存储
*/
import {
createPinia
} from 'pinia'
const pinia = createPinia()
export function setupStore(app) {
app.use(pinia)
}
export {
pinia
}
// 统一导出所有 store 模块
export {
useUserStore
}
from './modules/user'