dataCatalog.ts 318 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 const useDataCatalogStore = defineStore( // 主题域guid 'domainGuid', () => { const domainGuid = ref<string>("") function set(guid: any) { domainGuid.value = guid; } return { domainGuid, set } }, ) export default useDataCatalogStore