haditha_ui/layouts/HadithaLayout.vue

27 lines
369 B
Vue
Raw Permalink Normal View History

2025-02-16 12:51:52 +00:00
<script setup>
2025-02-11 10:17:22 +00:00
import { clearBodyClass } from "@manuals/utilities";
2025-02-26 07:52:21 +00:00
definePageMeta({
layout: false,
});
2025-02-11 10:17:22 +00:00
2025-02-16 12:51:52 +00:00
onMounted(() => {
clearBodyClass();
});
onUnmounted(() => {
clearBodyClass();
});
2025-02-11 10:17:22 +00:00
</script>
2025-02-16 12:51:52 +00:00
<template>
<main class="h-full">
<slot name="named-slot"></slot>
<slot></slot>
</main>
2025-02-26 07:52:21 +00:00
</template>
2025-03-15 10:11:29 +00:00
<style>
#__nuxt.isolate {
height: 100%;
}
</style>