This commit is contained in:
Nikola Petrov
2026-09-08 23:34:18 +02:00
parent 7f36d6f37c
commit 443a7c483a
12 changed files with 513 additions and 14 deletions
+10 -2
View File
@@ -1,5 +1,13 @@
<template>
HELLO
<LanguageSwitcher />
{{ t('app.hello') }}
<RouterView />
</template>
</template>
<script setup>
import { useI18n } from 'vue-i18n'
import LanguageSwitcher from '@/components/LanguageSwitcher.vue'
const { t } = useI18n()
</script>