elearning/Frontend-Learner/layouts/default.vue

24 lines
859 B
Vue
Raw Normal View History

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