dramaling-app/apps/web/src/stores/index.ts

16 lines
344 B
TypeScript

import { createPinia } from 'pinia'
import { createPersistedState } from 'pinia-plugin-persistedstate'
const pinia = createPinia()
// 配置持久化插件
pinia.use(createPersistedState({
storage: localStorage,
auto: true
}))
export { pinia }
export * from './auth'
export * from './user'
export * from './learning'
export * from './ui'