designtopack/src/components/project/cards/SimpleDocument.vue
2024-12-20 10:40:44 +01:00

12 lines
266 B
Vue

<template>
<Document
v-if="step.files.length > 0"
:step="step"
:pdf="step.files.find((file) => file.type === 'document')"
/>
</template>
<script setup>
import Document from "./Document.vue";
const { step } = defineProps({ step: Object });
</script>