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
  • dataProductListing.ts
  • lihua's avatar
    产品上架支持点击查看产品详情 · 469a81b6
    lihua committed 2025-12-10 17:10:20 +0800
    469a81b6
dataProductListing.ts 316 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
const useDataProductStore = defineStore(
   /** 产品上架 */
    'isRefresh',
    () => {
      const isRefresh = ref<boolean>(false)
      function set(v: boolean) {
        isRefresh.value = v;
      }

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