index.js 898 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * @Author: 廖明明
  3. * @Date: 2022-03-31 16:36:19
  4. * @LastEditors: 廖明明
  5. * @LastEditTime: 2022-04-22 10:16:40
  6. * @Description:vuex入口文件
  7. */
  8. import Vue from "vue";
  9. import Vuex from "vuex";
  10. import other from "./modules/other";
  11. import user from "./modules/user";
  12. import dictionary from "./modules/dictionary";
  13. import system from "./modules/system";
  14. Vue.use(Vuex);
  15. const myPlugin = (store) => {
  16. // 当 store 初始化后调用
  17. let vuexStorage = uni.getStorageSync("vuexStorage");
  18. if (
  19. vuexStorage &&
  20. vuexStorage.user &&
  21. vuexStorage.dictionary &&
  22. vuexStorage.system &&
  23. vuexStorage.other
  24. ) {
  25. store.replaceState(vuexStorage);
  26. }
  27. store.subscribe((mutation, state) => {
  28. uni.setStorageSync("vuexStorage", state);
  29. });
  30. };
  31. export default new Vuex.Store({
  32. modules: {
  33. user,
  34. dictionary,
  35. system,
  36. other,
  37. },
  38. plugins: [myPlugin],
  39. });