Nguyen Trung Nghia 6074e31003 init
2025-05-08 16:36:17 +07:00

17 lines
320 B
Vue

<template>
<div class="w-full flex flex-col">
<!-- Header -->
<Header/>
<!-- Content Area -->
<div class="w-full flex overflow-hidden pt-[70px] md:pt-[80px]">
<div class=" overflow-y-auto">
<slot/>
<Footer />
</div>
</div>
</div>
</template>
<script setup>
</script>