nuxt-prawo-jazdy/app.vue
NetMan ccccf038d9 ui i18n english, fix locale routes, theme toggle
minor:
- change background for category list for dark theme compatibility
- try to 'fix' video playback errors in console
2025-12-16 09:32:27 +01:00

20 lines
368 B
Vue

<script setup lang="ts">
const examStore = useExamStore();
const { setLocale } = useI18n();
setLocale(examStore.lang as 'pl' | 'en' | 'de' | 'ua');
const themeStore = useThemeStore();
</script>
<template>
<div :data-theme="themeStore.theme" class="min-h-dvh">
<NuxtPage />
</div>
</template>
<style>
.outline-set-solid {
outline-style: solid;
}
</style>