2024-09-07 09:38:18 +02:00
|
|
|
<script setup lang="ts">
|
2024-02-24 17:46:14 +01:00
|
|
|
import type { LocaleObject } from '@nuxtjs/i18n'
|
2024-09-30 17:11:56 +09:00
|
|
|
import type { ComputedRef } from 'vue'
|
2022-12-28 00:03:50 +01:00
|
|
|
|
2023-01-13 01:52:52 +08:00
|
|
|
const userSettings = useUserSettings()
|
|
|
|
|
2022-12-28 00:03:50 +01:00
|
|
|
const { locales } = useI18n() as { locales: ComputedRef<LocaleObject[]> }
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-13 01:52:52 +08:00
|
|
|
<select v-model="userSettings.language">
|
|
|
|
<option v-for="item in locales" :key="item.code" :value="item.code" :selected="userSettings.language === item.code">
|
2022-12-28 00:03:50 +01:00
|
|
|
{{ item.name }}
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
</template>
|