bbe8fcd776
- 将前端项目目录从 web-flowith 重命名为 web,使目录结构更简洁 - 保持所有前端代码和配置文件不变 - 统一项目目录命名规范
12 lines
261 B
TypeScript
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'
|