elk/pages/settings/interface/index.vue

24 wiersze
585 B
Vue
Czysty Zwykły widok Historia

2023-01-04 13:57:12 +00:00
<script setup lang="ts">
const { t } = useI18n()
useHydratedHead({
2023-01-04 13:57:12 +00:00
title: () => `${t('settings.interface.label')} | ${t('nav.settings')}`,
})
</script>
2022-12-26 23:04:24 +00:00
<template>
<MainContent back-on-small-screen>
2022-12-26 23:04:24 +00:00
<template #title>
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<span>{{ $t('settings.interface.label') }}</span>
</div>
</template>
<div px-6 pt-3 pb-6 flex="~ col gap6">
<SettingsFontSize />
<SettingsColorMode />
<SettingsThemeColors />
<SettingsBottomNav />
2022-12-26 23:04:24 +00:00
</div>
</MainContent>
</template>