2024-11-16 11:30:51 +01:00
|
|
|
<template>
|
2024-11-18 12:00:19 +01:00
|
|
|
<PdfViewer v-if="dialog.content.slug === 'client-brief'" />
|
2024-11-16 11:30:51 +01:00
|
|
|
</template>
|
|
|
|
|
<script setup>
|
|
|
|
|
import PdfViewer from "./client-brief/PdfViewer.vue";
|
|
|
|
|
import { useDialogStore } from "../../stores/dialog";
|
|
|
|
|
|
|
|
|
|
const dialog = useDialogStore();
|
|
|
|
|
</script>
|