case.ts 206 B

1234567
  1. import { Case, getCaseInfo } from "@/api"
  2. import { ref } from 'vue'
  3. export const caseProject = ref<Case>()
  4. export const refreshCase = () => {
  5. return getCaseInfo().then(data => caseProject.value = data)
  6. }