* 'main' of https://framagit.org/isUnknown/pdc-b2b-project-management-platform:
  add dependencies to documentation
  document new route
This commit is contained in:
Timothée Goguely 2024-09-18 09:29:51 +02:00
commit 57184128c7
4 changed files with 88 additions and 57 deletions

View file

@ -1,16 +1,12 @@
<template>
<h1>{{ data.content.title }}</h1>
<!-- ... -->
<h1>{{ page.content.title }}</h1>
</template>
<style scoped>
</style>
<script setup>
const { data } = defineProps({
data: Object,
});
import { usePageStore } from "../stores/page";
import { storeToRefs } from "pinia";
// ....
const { page } = storeToRefs(usePageStore());
</script>
<style scoped></style>