您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

use-set-workflow-vars-with-value.ts 228B

123456789
  1. import { useHooksStore } from '@/app/components/workflow/hooks-store'
  2. export const useSetWorkflowVarsWithValue = () => {
  3. const fetchInspectVars = useHooksStore(s => s.fetchInspectVars)
  4. return {
  5. fetchInspectVars,
  6. }
  7. }