finish proposal
This commit is contained in:
parent
cdeebbf8c8
commit
16ae67dfc4
3 changed files with 30 additions and 8 deletions
14
src/components/project/cards/Proposal.vue
Normal file
14
src/components/project/cards/Proposal.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue