2025-10-09 09:29:36 +08:00
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import { createPersistedState } from 'pinia-persistedstate-plugin'
|
|
|
|
|
// 创建store实例
|
|
|
|
|
const store = createPinia()
|
|
|
|
|
// 使用持久化插件(全局持久化)
|
|
|
|
|
store.use(createPersistedState())
|
2025-10-21 10:20:57 +08:00
|
|
|
export default store
|
2025-12-22 16:34:43 +08:00
|
|
|
export * from './modules/h_generate'
|
2025-10-23 14:05:42 +08:00
|
|
|
export * from './modules/generate'
|
|
|
|
|
export * from './modules/overall'
|
2025-10-24 17:37:15 +08:00
|
|
|
export * from './modules/userInfo'
|