Update Inspirations view, components and json template
This commit is contained in:
parent
4cf00533d0
commit
d79f195913
3 changed files with 239 additions and 8 deletions
|
|
@ -1,16 +1,28 @@
|
|||
<template>
|
||||
<h1>{{ data.content.title }}</h1>
|
||||
<!-- ... -->
|
||||
<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>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
||||
<script setup>
|
||||
import Menu from "../components/Menu.vue";
|
||||
import Inspirations from "../components/Inspirations.vue";
|
||||
|
||||
const { data } = defineProps({
|
||||
data: Object,
|
||||
});
|
||||
|
||||
// ....
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue