index.js 314 B

12345678910111213
  1. import { createPinia } from "pinia";
  2. import { createPersistedState } from 'pinia-plugin-persistedstate';
  3. const store = createPinia()
  4. store.use(createPersistedState({
  5. serializer: { // 指定参数序列化器
  6. serialize: JSON.stringify,
  7. deserialize: JSON.parse,
  8. },
  9. }))
  10. export default store