Working on UI

This commit is contained in:
2026-09-11 16:06:49 +02:00
parent fcd4d4743b
commit abf00ac401
12 changed files with 218 additions and 25 deletions
+16
View File
@@ -0,0 +1,16 @@
<template>
<h1 class="title">{{ t('menu.userSettings') }}</h1>
<LanguageSwitcher />
<ThemeSwitcher />
</template>
<script setup>
import ThemeSwitcher from '@/components/ThemeSwitcher.vue';
import LanguageSwitcher from '@/components/LanguageSwitcher.vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>