designtopack/src/components/project/DialogWrapper.vue

15 lines
314 B
Vue
Raw Normal View History

<template>
2024-11-18 15:27:41 +01:00
<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>