designtopack/src/components/project/DialogWrapper.vue
2024-11-18 15:27:41 +01:00

14 lines
314 B
Vue

<template>
<PdfViewer
v-if="
dialog.content.slug === 'client-brief' ||
dialog.content.slug === 'proposal'
"
/>
</template>
<script setup>
import PdfViewer from "./client-brief/PdfViewer.vue";
import { useDialogStore } from "../../stores/dialog";
const dialog = useDialogStore();
</script>