mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
31 lines
811 B
Vue
31 lines
811 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back-on-small-screen>
|
|
<template #title>
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
<span>{{ $t('settings.profile.label') }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<SettingsItem
|
|
command
|
|
icon="i-ri:user-settings-line"
|
|
:text="$t('settings.profile.appearance.label')"
|
|
:description="$t('settings.profile.appearance.description')"
|
|
to="/settings/profile/appearance"
|
|
/>
|
|
<SettingsItem
|
|
command
|
|
icon="i-ri:hashtag"
|
|
:text="$t('settings.profile.featured_tags.label')"
|
|
:description="$t('settings.profile.featured_tags.description')"
|
|
to="/settings/profile/featured-tags"
|
|
/>
|
|
</MainContent>
|
|
</template>
|