mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-27 19:29:52 +08:00
17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
import { createPinia } from 'pinia'
|
|
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
|
|
|
// 创建 Pinia 实例
|
|
const pinia = createPinia()
|
|
|
|
// 使用持久化插件
|
|
pinia.use(piniaPluginPersistedstate)
|
|
|
|
export default pinia
|
|
|
|
// 所有的 store
|
|
import { useAuthStore } from './auth'
|
|
import { useUserStore } from './user'
|
|
|
|
export { useAuthStore, useUserStore }
|