16 lines
199 B
Vue
16 lines
199 B
Vue
<template>
|
|
<div>
|
|
<header class="mx-8">
|
|
<NavBar />
|
|
</header>
|
|
|
|
<main class="min-h-dvh">
|
|
<slot />
|
|
</main>
|
|
|
|
<footer>
|
|
<Footer />
|
|
</footer>
|
|
</div>
|
|
</template>
|