elearning/Frontend-Learner/layouts/default.vue

23 lines
859 B
Vue

<script setup lang="ts">
/**
* @file default.vue
* @description Layout หลักสำหรับหน้าเว็บของผู้ใช้ (Authenticated Users)
* ประกอบด้วย Header (Navbar) และ Mobile Navigation
*/
</script>
<template>
<!-- App Shell: คอนเทนเนอรหลกของแอปพลเคช -->
<div class="app-shell min-h-screen transition-colors duration-200">
<!-- Header: แถบเมนานบน -->
<AppHeader />
<!-- Main Content Area: วนแสดงเนอหาหล -->
<main class="app-main">
<slot />
</main>
<!-- Mobile Bottom Navigation: แถบเมนานลาง (แสดงเฉพาะมอถ) -->
<MobileNav />
</div>
</template>