Add Menu component

This commit is contained in:
Timothée Goguely 2024-09-02 14:31:50 +02:00
parent 3f7f5cc956
commit cd630deaf4
2 changed files with 41 additions and 1 deletions

View file

@ -1,7 +1,12 @@
<template>
<h1>{{ data.content.title }}</h1>
<h1 class="sr-only">{{ data.content.title }}</h1>
<Menu />
<header class="header">
</header>
</template>
<script setup>
import Menu from "../components/Menu.vue";
const { data } = defineProps({
data: Object,
});