2023-12-13 16:56:43 +07:00
|
|
|
<script setup lang="ts">
|
2023-12-14 14:49:27 +07:00
|
|
|
import ViewPDF from "@/modules/06_evaluate/components/viewstep/viewPDF.vue";
|
2023-12-13 16:56:43 +07:00
|
|
|
|
2023-12-22 16:00:05 +07:00
|
|
|
const props = defineProps({
|
|
|
|
|
pdfSrc: {
|
|
|
|
|
type: String,
|
|
|
|
|
},
|
|
|
|
|
});
|
2023-12-13 16:56:43 +07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-12-22 16:00:05 +07:00
|
|
|
<ViewPDF :pdfSrc="props.pdfSrc" />
|
2023-12-13 16:56:43 +07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|