laravel-nuxt/nuxt/app/layouts/default.vue

18 lines
319 B
Vue

<template>
<div>
<AppHeader />
<UContainer class="flex justify-start mt-4">
<AppNavigation />
<UContainer
as="main"
class="flex-grow py-4 sm:py-7 flex flex-col"
>
<slot />
</UContainer>
</UContainer>
</div>
</template>
<script setup lang="ts">
</script>