10 lines
249 B
Vue
10 lines
249 B
Vue
|
|
<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>
|