* feat: Add Traditional Chinese language UI locale * chore: 添加新翻译 --------- Co-authored-by: ChenZhaoYu <790348264@qq.com>
28 lines
586 B
TypeScript
28 lines
586 B
TypeScript
import { computed } from 'vue'
|
|
import { enUS, zhCN, zhTW } from 'naive-ui'
|
|
import { useAppStore } from '@/store'
|
|
import { setLocale } from '@/locales'
|
|
|
|
export function useLanguage() {
|
|
const appStore = useAppStore()
|
|
|
|
const language = computed(() => {
|
|
switch (appStore.language) {
|
|
case 'en-US':
|
|
setLocale('en-US')
|
|
return enUS
|
|
case 'zh-CN':
|
|
setLocale('zh-CN')
|
|
return zhCN
|
|
case 'zh-TW':
|
|
setLocale('zh-TW')
|
|
return zhTW
|
|
default:
|
|
setLocale('zh-CN')
|
|
return enUS
|
|
}
|
|
})
|
|
|
|
return { language }
|
|
}
|