2022-12-29 20:14:05 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2022-12-26 08:50:11 +00:00
|
|
|
<template>
|
2022-12-28 01:12:56 +00:00
|
|
|
<MainContent back-on-small-screen>
|
2022-12-26 08:50:11 +00:00
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
|
|
<span>{{ $t('settings.profile.label') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<SettingsNavItem
|
|
|
|
command
|
|
|
|
icon="i-ri:user-settings-line"
|
|
|
|
:text="$t('settings.profile.appearance.label')"
|
2022-12-29 20:01:31 +00:00
|
|
|
:description="$t('settings.profile.appearance.description')"
|
2022-12-26 08:50:11 +00:00
|
|
|
to="/settings/profile/appearance"
|
2022-12-29 20:01:31 +00:00
|
|
|
/>
|
2022-12-26 08:50:11 +00:00
|
|
|
<SettingsNavItem
|
|
|
|
command
|
|
|
|
icon="i-ri:hashtag"
|
|
|
|
:text="$t('settings.profile.featured_tags.label')"
|
2022-12-29 20:01:31 +00:00
|
|
|
:description="$t('settings.profile.featured_tags.description')"
|
2022-12-26 08:50:11 +00:00
|
|
|
to="/settings/profile/featured-tags"
|
2022-12-29 20:01:31 +00:00
|
|
|
/>
|
2022-12-26 08:50:11 +00:00
|
|
|
</MainContent>
|
|
|
|
</template>
|