website/app/layouts/default.vue

12 lines
205 B
Vue
Raw Normal View History

2026-05-13 01:04:57 +02:00
<template>
2026-05-14 06:47:30 +02:00
<div class="layout-wrapper">
<StatusHeader />
<main>
<slot />
</main>
2026-05-13 01:04:57 +02:00
</div>
2026-05-13 03:19:37 +02:00
</template>
2026-05-14 06:47:30 +02:00
<script setup>
import StatusHeader from '~/components/StatusHeader.vue'
2026-05-14 06:52:36 +02:00
</script>