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'