Files
lanecarford_front/src/stores/index.ts
X1627315083 a6523ec137 fix
2025-10-21 10:20:57 +08:00

8 lines
283 B
TypeScript

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