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
  • dataAnonymization.ts
  • lihua's avatar
    标签管理和匿名化管理 · 8f19d70a
    lihua committed 2025-08-19 17:19:32 +0800
    8f19d70a Browse Files
dataAnonymization.ts 318 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
const useDataAnonymizationStore = defineStore(
  // 资产目录guid
  "isRefresh",
  () => {
    const isRefresh = ref<boolean>(false);
    function setIsRefresh(v: boolean) {
      isRefresh.value = v;
    }

    return {
      isRefresh,
      setIsRefresh,
    };
  }
);

export default useDataAnonymizationStore;