1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/components/nav/SelectLanguage.vue

44 lines
922 B
Vue
Raw Normal View History

<script lang="ts" setup>
2022-11-28 07:12:13 +00:00
import { STORAGE_KEY_LANG } from '~/constants'
const { locale, t } = useI18n()
2022-11-28 07:12:13 +00:00
useLocalStorage(STORAGE_KEY_LANG, locale)
2022-11-28 10:24:05 +00:00
// TODO: read from $i18n https://i18n.nuxtjs.org/lang-switcher
const languageList = [
{
value: 'en-US',
label: 'English',
},
2022-11-28 16:41:58 +00:00
{
value: 'de-DE',
label: 'Deutsch',
},
{
value: 'zh-CN',
label: '简体中文',
},
]
</script>
<template>
<CommonTooltip placement="bottom" :content="t('selectLanguage')">
<CommonDropdown>
2022-11-28 07:16:22 +00:00
<button flex>
<div i-ri:earth-line text-lg />
</button>
<template #popper>
<CommonDropdownItem
v-for="item in languageList"
:key="item.value"
:checked="item.value === locale"
@click="locale = item.value"
>
{{ item.label }}
</CommonDropdownItem>
</template>
</CommonDropdown>
</CommonTooltip>
</template>