add VirtualSample component
This commit is contained in:
parent
ed73b33234
commit
31844269c0
3 changed files with 15 additions and 0 deletions
5
src/components/project/VirtualSample.vue
Normal file
5
src/components/project/VirtualSample.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<template>
|
||||
<div>Échantillon virtuel</div>
|
||||
</template>
|
||||
<script setup></script>
|
||||
<style scoped></style>
|
||||
|
|
@ -3,6 +3,8 @@
|
|||
<Header :title="page.content.title" />
|
||||
<!-- Kanban: Status Brief Enrichi -->
|
||||
|
||||
<VirtualSample />
|
||||
|
||||
<PdfViewer
|
||||
v-if="file"
|
||||
:file="file"
|
||||
|
|
@ -168,6 +170,7 @@ import { storeToRefs } from "pinia";
|
|||
import ProjectStep from "../components/project/ProjectStep.vue";
|
||||
import Header from "../components/project/Header.vue";
|
||||
import PdfViewer from "../components/project/client-brief/PdfViewer.vue";
|
||||
import VirtualSample from "../components/project/VirtualSample.vue";
|
||||
import { ref } from "vue";
|
||||
|
||||
const { page } = storeToRefs(usePageStore());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue