You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
659 B
TypeScript
31 lines
659 B
TypeScript
import { computed } from 'vue'
|
|
import { enUS, koKR, 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 'ko-KR':
|
|
setLocale('ko-KR')
|
|
return koKR
|
|
case 'zh-CN':
|
|
setLocale('zh-CN')
|
|
return zhCN
|
|
case 'zh-TW':
|
|
setLocale('zh-TW')
|
|
return zhTW
|
|
default:
|
|
setLocale('zh-CN')
|
|
return zhCN
|
|
}
|
|
})
|
|
|
|
return { language }
|
|
}
|