Add Menu component
This commit is contained in:
parent
3f7f5cc956
commit
cd630deaf4
2 changed files with 41 additions and 1 deletions
|
|
@ -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,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue