designtopack/src/views/Home.vue

14 lines
248 B
Vue
Raw Normal View History

2024-07-11 12:42:29 +02:00
<template>
2024-09-02 14:31:50 +02:00
<h1 class="sr-only">{{ data.content.title }}</h1>
<Menu />
<header class="header">
</header>
2024-07-11 12:42:29 +02:00
</template>
<script setup>
2024-09-02 14:31:50 +02:00
import Menu from "../components/Menu.vue";
2024-07-11 12:42:29 +02:00
const { data } = defineProps({
data: Object,
});
</script>