2024-11-16 11:30:51 +01:00
|
|
|
<template>
|
2024-11-27 17:51:49 +01:00
|
|
|
<TitledPdfWrapper
|
2024-11-18 15:27:41 +01:00
|
|
|
v-if="
|
2024-11-19 14:10:35 +01:00
|
|
|
dialog.content.slug.includes('brief') ||
|
2024-11-18 15:27:41 +01:00
|
|
|
dialog.content.slug === 'proposal'
|
|
|
|
|
"
|
|
|
|
|
/>
|
2024-11-19 15:38:39 +01:00
|
|
|
|
|
|
|
|
<VirtualSample v-if="dialog.content.slug === 'virtual-sample'" />
|
2024-11-16 11:30:51 +01:00
|
|
|
</template>
|
|
|
|
|
<script setup>
|
2024-11-27 17:51:49 +01:00
|
|
|
import TitledPdfWrapper from "./TitledPdfWrapper.vue";
|
2024-11-16 11:30:51 +01:00
|
|
|
import { useDialogStore } from "../../stores/dialog";
|
2024-11-20 15:57:07 +01:00
|
|
|
import VirtualSample from "./virtual-sample/VirtualSample.vue";
|
2024-11-16 11:30:51 +01:00
|
|
|
|
|
|
|
|
const dialog = useDialogStore();
|
|
|
|
|
</script>
|