finish physical sample step

This commit is contained in:
isUnknown 2024-12-20 08:05:55 +01:00
parent 2b2c1002e3
commit d178fc5194
5 changed files with 60 additions and 4 deletions

View file

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