feat: Implement core e-learning platform features including quiz, dashboard, course discovery, and classroom learning with i18n support.
All checks were successful
Build and Deploy Frontend Learner / Build Frontend Learner Docker Image (push) Successful in 35s
Build and Deploy Frontend Learner / Deploy E-learning Frontend Learner to Dev Server (push) Successful in 4s
Build and Deploy Frontend Learner / Notify Deployment Status (push) Successful in 1s

This commit is contained in:
supalerk-ar66 2026-02-12 12:01:37 +07:00
parent d787412036
commit a0ca6f7e6b
13 changed files with 429 additions and 246 deletions

View file

@ -6,6 +6,7 @@
const props = defineProps<{
src: string;
poster?: string;
initialSeekTime?: number;
}>();
@ -241,6 +242,7 @@ watch([volume, isMuted], () => {
<video
ref="videoRef"
:src="src"
:poster="poster"
class="w-full h-full object-contain"
@click="togglePlay"
@timeupdate="handleTimeUpdate"