feat: Initialize e-learning frontend with course browsing, landing, and authentication pages, along with core layouts and composables.
This commit is contained in:
parent
a0b93978a7
commit
a201c4285b
8 changed files with 129 additions and 198 deletions
|
|
@ -1,6 +1,26 @@
|
|||
<script setup lang="ts">
|
||||
const $q = useQuasar()
|
||||
|
||||
// บังคับให้หน้า Auth เคลียร์ Dark Mode ของระบบทิ้ง
|
||||
useHead({
|
||||
htmlAttrs: {
|
||||
class: 'light',
|
||||
style: 'background-color: #ffffff'
|
||||
},
|
||||
bodyAttrs: {
|
||||
class: 'light',
|
||||
style: 'background-color: #ffffff'
|
||||
}
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
$q.dark.set(false)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- Auth Shell: Wrapper for authentication pages (Login, Register, etc.) -->
|
||||
<div class="auth-shell dark">
|
||||
<div class="auth-shell bg-white w-full min-h-screen">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue