14 lines
314 B
Vue
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>
|