mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-15 13:30:05 +00:00
c504e14ff5
Co-authored-by: TAKAHASHI Shuuji <shuuji3@gmail.com>
24 lines
585 B
Vue
24 lines
585 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
|
|
useHydratedHead({
|
|
title: () => `${t('settings.interface.label')} | ${t('nav.settings')}`,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back-on-small-screen>
|
|
<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 />
|
|
</div>
|
|
</MainContent>
|
|
</template>
|