mirror of
https://github.com/rommapp/romm.git
synced 2026-02-19 07:50:57 +01:00
15 lines
439 B
Vue
15 lines
439 B
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
import LanguageSelector from "@/components/Settings/UserInterface/LanguageSelector.vue";
|
|
import RSection from "@/components/common/RSection.vue";
|
|
|
|
const { t } = useI18n();
|
|
</script>
|
|
<template>
|
|
<RSection icon="mdi-translate" :title="t('settings.language')" class="ma-2">
|
|
<template #content>
|
|
<LanguageSelector class="ma-2" />
|
|
</template>
|
|
</RSection>
|
|
</template>
|