system.js 469 B

123456789101112131415161718192021
  1. // 组件引用
  2. import { defineStore } from "pinia";
  3. // 接口引用
  4. // 公共方法引用
  5. import { storage, storageSystem } from "@/utils/storage";
  6. const systemStores = defineStore(`storage-system`, {
  7. state: () => ({
  8. homeList: storageSystem.get("homeList"),
  9. mallList: {
  10. activeUserList: []
  11. },
  12. meetingList: {
  13. form: {}
  14. }
  15. }),
  16. unistorage: true,
  17. actions: {},
  18. });
  19. export default systemStores;