Conditional rendering, pages updated

This commit is contained in:
2023-11-20 22:14:20 +03:00
parent a39ad3b464
commit 0cdee66c1d
12 changed files with 193 additions and 63 deletions
+16
View File
@@ -0,0 +1,16 @@
<script setup lang="ts"></script>
<template>
<main
class="dimensions background rounded-1 overflow-auto d-flex flex-column gap-3 gap-sm-2 px-4 pt-4 pb-3"
>
<Navigation />
<slot name="header" />
<NuxtPage
class="scrollbar fade-mask-sm flex-grow-1 overflow-x-hidden overflow-y-auto py-sm-4 pe-sm-3"
/>
<slot name="footer" />
</main>
</template>
<style scoped lang="scss"></style>