Skip to content
  • This project
    • Loading...
  • Sign in

csbr-daop / fe-data-trusted-space

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • fe-data-trusted-space
  • src
  • store
  • modules
  • productSpace.ts
  • lihua's avatar
    逻辑空间管理连接器接口联调 · 2bacf78a
    lihua committed 2026-04-02 10:27:05 +0800
    2bacf78a Browse Files
productSpace.ts 321 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
const useDataProductSpaceStore = defineStore(
  // 产品逻辑空间
  'productSpace',
  () => {
    const isRefresh = ref<boolean>(false);
    function setIsRefresh(v: boolean) {
      isRefresh.value = v;
    }

    return {
      isRefresh,
      setIsRefresh,
    };
  }
);

export default useDataProductSpaceStore;