Update App.vue

This commit is contained in:
Osvaldo-Net 2025-09-19 14:40:24 -05:00 committed by GitHub
parent f5bf3c89e2
commit 763b8b0e59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@ const languageFlag = computed(() => {
uk: "ua",
zh: "cn",
ko: "kr",
es: "es",
};
return "fi-" + (langMap[lang] || lang);
@ -182,6 +183,7 @@ const userDisplayName = computed(() => {
<a class="dropdown-item" href="#" @click.prevent="switchLanguage('uk')"><span class="fi fi-ua"></span> Українська</a>
<a class="dropdown-item" href="#" @click.prevent="switchLanguage('vi')"><span class="fi fi-vi"></span> Tiếng Việt</a>
<a class="dropdown-item" href="#" @click.prevent="switchLanguage('zh')"><span class="fi fi-cn"></span> 中文</a>
<a class="dropdown-item" href="#" @click.prevent="switchLanguage('es')"><span class="fi fi-es"></span> Español</a>
</div>
</div>