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
  • dataConnector.ts
  • lihua's avatar
    企业认证,连接器代码迁移 · e047444d
    lihua committed 2025-11-25 09:24:54 +0800
    e047444d
dataConnector.ts 297 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
const useDataConnectorStore = defineStore(
    'isRefresh',
    () => {
      const isRefresh = ref<boolean>(false)
    
      function set(v: boolean) {
        isRefresh.value = v;
      }

      return {
        isRefresh,
        set,
      }
    },
  )
  
export default useDataConnectorStore