designtopack/src/components/project/DialogWrapper.vue

10 lines
249 B
Vue
Raw Normal View History

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