Files
Code-Create/src/stores/index.ts
2026-05-18 15:22:08 +08:00

10 lines
301 B
TypeScript

import { createPinia } from 'pinia'
import { createPersistedState } from 'pinia-persistedstate-plugin'
// 创建store实例
const store = createPinia()
// 使用持久化插件(全局持久化)
store.use(createPersistedState())
export default store
export * from './global'
export * from './userInfo'