File size: 397 Bytes
a6cca4c
 
1f4cfcb
 
a6cca4c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <div>
    <h2 class="text-xl font-bold text-ink-950 mb-2">任务历史</h2>
    <p class="text-sm text-ink-500 mb-6">
      查看后台任务的执行状态、耗时、参数和结果,便于排查失败原因。
    </p>
    <TaskHistory :tasks="tasks" />
  </div>
</template>

<script setup>
import TaskHistory from './TaskHistory.vue'

defineProps({
  tasks: Array,
})
</script>