28 lines
No EOL
498 B
Vue
28 lines
No EOL
498 B
Vue
<template>
|
|
<h1 class="sr-only">{{ data.content.title }}</h1>
|
|
<div class="with-sidebar">
|
|
<!-- Changer le Menu actif
|
|
class="active" sur le <li>
|
|
aria-current="page" sur le <a>
|
|
-->
|
|
<Menu />
|
|
<main>
|
|
<Inspirations />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Menu from "../components/Menu.vue";
|
|
import Inspirations from "../components/Inspirations.vue";
|
|
|
|
const { data } = defineProps({
|
|
data: Object,
|
|
});
|
|
|
|
// ....
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |