9 lines
214 B
Vue
9 lines
214 B
Vue
|
|
<template>
|
||
|
|
<Document v-if="step.files.length > 0" :step="step" :pdf="step.files[0]" />
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import Document from "./Document.vue";
|
||
|
|
|
||
|
|
const { step } = defineProps({ step: Object });
|
||
|
|
</script>
|