finish proposal

This commit is contained in:
isUnknown 2024-12-20 07:30:11 +01:00
parent cdeebbf8c8
commit 16ae67dfc4
3 changed files with 30 additions and 8 deletions

View file

@ -0,0 +1,14 @@
<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>