17 lines
399 B
Vue
17 lines
399 B
Vue
<template>
|
|
<div class="h-screen flex flex-col overflow-hidden">
|
|
<Navigation />
|
|
<main class="flex-1 overflow-y-auto pt-20">
|
|
<NuxtPage />
|
|
</main>
|
|
<Footer />
|
|
<ModalDialog />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Navigation from '~/components/Navigation.vue'
|
|
import Footer from '~/components/Footer.vue'
|
|
import ModalDialog from '~/components/ModalDialog.vue'
|
|
</script>
|