fix: i18n config error

This commit is contained in:
chansee97 2024-04-06 01:42:24 +08:00
parent a8b6e69714
commit 651d13e238

View File

@ -5,7 +5,10 @@ import { naiveI18nOptions } from '@/utils'
const appStore = useAppStore() const appStore = useAppStore()
const naiveLocale = computed(() => naiveI18nOptions[appStore.lang]) const naiveLocale = computed(() => {
return naiveI18nOptions[appStore.lang] ? naiveI18nOptions[appStore.lang] : naiveI18nOptions.enUS
},
)
</script> </script>
<template> <template>