prepare physical sample component
This commit is contained in:
parent
d7e2a58448
commit
30876abff3
24 changed files with 180 additions and 37 deletions
|
|
@ -2,16 +2,20 @@
|
|||
<TitledPdfWrapper
|
||||
v-if="
|
||||
dialog.content.slug.includes('brief') ||
|
||||
dialog.content.slug === 'proposal'
|
||||
dialog.content.slug === 'proposal' ||
|
||||
dialog.content.slug === 'industrial-ideation'
|
||||
"
|
||||
/>
|
||||
|
||||
<VirtualSample v-if="dialog.content.slug === 'virtual-sample'" />
|
||||
|
||||
<PhysicalSample v-if="dialog.content.slug === 'physical-content'" />
|
||||
</template>
|
||||
<script setup>
|
||||
import TitledPdfWrapper from "./TitledPdfWrapper.vue";
|
||||
import { useDialogStore } from "../../stores/dialog";
|
||||
import VirtualSample from "./virtual-sample/VirtualSample.vue";
|
||||
import PhysicalSample from "./PhysicalSample.vue";
|
||||
|
||||
const dialog = useDialogStore();
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue