We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47fc497 commit bdebc72Copy full SHA for bdebc72
apps/web/src/components/project/details/ProjectHeader.vue
@@ -27,13 +27,16 @@
27
<script setup lang="ts">
28
import { Color, Project } from '@/types'
29
import type { DsfrBreadcrumbProps } from '@gouvminint/vue-dsfr'
30
+import { useNavigationStore } from '@/stores/navigation'
31
32
interface Props {
33
project: Project
34
themeColor?: Color
35
}
36
const props = defineProps<Props>()
37
38
+const navigationStore = useNavigationStore()
39
+
40
const links = ref<DsfrBreadcrumbProps['links']>([{ text: props.project.title }])
41
</script>
42
0 commit comments