2024-11-16 11:30:51 +01:00
|
|
|
<template>
|
2024-11-18 15:27:41 +01:00
|
|
|
<PdfViewer
|
|
|
|
|
v-if="
|
|
|
|
|
dialog.content.slug === 'client-brief' ||
|
|
|
|
|
dialog.content.slug === 'proposal'
|
|
|
|
|
"
|
|
|
|
|
/>
|
2024-11-16 11:30:51 +01:00
|
|
|
</template>
|
|
|
|
|
<script setup>
|
|
|
|
|
import PdfViewer from "./client-brief/PdfViewer.vue";
|
|
|
|
|
import { useDialogStore } from "../../stores/dialog";
|
|
|
|
|
|
|
|
|
|
const dialog = useDialogStore();
|
|
|
|
|
</script>
|