| 12345678910111213141516 |
- // src/store/index.ts
- import { createPinia } from 'pinia'
- import { createPersistedState } from 'pinia-plugin-persistedstate' // 数据持久化
- const store = createPinia()
- store.use(
- createPersistedState({
- storage: {
- getItem: uni.getStorageSync,
- setItem: uni.setStorageSync,
- },
- }),
- )
- export default store
|