This commit is contained in:
2026-02-21 14:57:05 +08:00
parent 6b92ffbfeb
commit 6d118287db
7 changed files with 790 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// Store 入口文件
import { createPinia } from 'pinia'
// 导出所有 store
export { useUserStore } from './user'
export { useAppStore } from './app'
// 创建 pinia 实例
const pinia = createPinia()
export default pinia