Files
happy-life-star/web/src/stores/index.ts
T
peanut bbe8fcd776 重命名前端项目目录:web-flowith -> web
- 将前端项目目录从 web-flowith 重命名为 web,使目录结构更简洁
- 保持所有前端代码和配置文件不变
- 统一项目目录命名规范
2025-07-24 22:20:19 +08:00

12 lines
261 B
TypeScript

import { createPinia } from 'pinia'
const pinia = createPinia()
export default pinia
// 导出所有store
export { useUserStore } from './user'
export { useChatStore } from './chat'
export { useDiaryStore } from './diary'
export { useAppStore } from './app'