Sink-UrlShortener/layouts/default.vue
2024-05-25 08:09:30 +08:00

12 lines
238 B
Vue

<template>
<main class="flex flex-col min-h-screen">
<LayoutsHeader />
<section class="flex flex-1">
<div class="container mx-auto">
<slot />
</div>
</section>
<LayoutsFooter />
</main>
</template>