designtopack/src/components/project/cards/Proposal.vue
2024-12-20 07:30:11 +01:00

14 lines
290 B
Vue

<template>
<Document
v-for="(pdf, index) in step.files"
:key="pdf.uri"
:step="step"
:pdf="pdf"
:index="index"
:has-image="index === 0"
/>
</template>
<script setup>
import Document from "./Document.vue";
const { step } = defineProps({ step: Object });
</script>