Files
wondif_vue/app/layouts/default.vue

20 lines
306 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<HeaderWrapper theme="light">
<HeaderDefault />
</HeaderWrapper>
<main id="main-content">
<!-- Cest le slot du layout qui reçoit le contenu de la page (pages/*.vue). -->
<slot />
</main>
<footer>
<Footer />
</footer>
</template>
<script setup>
</script>