mirror of
https://github.com/rustfs/console.git
synced 2026-08-30 17:14:47 +08:00
12 lines
388 B
Vue
12 lines
388 B
Vue
<template>
|
|
<div class="flex flex-col gap-3">
|
|
<div v-if="tasks.length <= 0" class="mx-auto text-muted-foreground text-center">暂无任务</div>
|
|
<object-upload-task-item v-for="task in tasks" :key="task.id" :task="task" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { UploadTask } from '~/lib/upload-task-manager'
|
|
defineProps<{ tasks: UploadTask[] }>()
|
|
</script>
|