From 651d13e238f28edd959f37d030b0360d88e4665b Mon Sep 17 00:00:00 2001 From: chansee97 Date: Sat, 6 Apr 2024 01:42:24 +0800 Subject: [PATCH] fix: i18n config error --- src/App.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 15134b7..20a5c16 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,10 @@ import { naiveI18nOptions } from '@/utils' const appStore = useAppStore() -const naiveLocale = computed(() => naiveI18nOptions[appStore.lang]) +const naiveLocale = computed(() => { + return naiveI18nOptions[appStore.lang] ? naiveI18nOptions[appStore.lang] : naiveI18nOptions.enUS +}, +)