From d97a7a2096b8a4c598c048aa9b4020048cd6ad71 Mon Sep 17 00:00:00 2001 From: liangping <18786721@qq.com> Date: Wed, 25 Sep 2024 07:23:28 +0800 Subject: [PATCH] add Japanese --- src/layouts/components/NavBarI18n.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/layouts/components/NavBarI18n.vue b/src/layouts/components/NavBarI18n.vue index 86c122e5..0f1b8c99 100644 --- a/src/layouts/components/NavBarI18n.vue +++ b/src/layouts/components/NavBarI18n.vue @@ -16,6 +16,10 @@ const i18nLangs: Array<{ label: string; i18nLang: string }> = [ label: 'Indonesian', i18nLang: 'id', }, + { + label: '日本語', + i18nLang: 'jo', + }, ]; let locale = ref(useI18n({ useScope: 'global' }).locale);