unibest/src/store/index.ts

9 lines
207 B
TypeScript
Raw Normal View History

2023-12-22 15:12:44 +08:00
// src/store/index.ts
import { createPinia } from 'pinia'
import piniaPersist from 'pinia-plugin-persistedstate' // 数据持久化
const store = createPinia()
store.use(piniaPersist)
export default store