2022-11-26 15:58:10 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-30 00:50:13 +03:00
|
|
|
const { t } = useI18n()
|
2022-11-26 15:58:10 +03:00
|
|
|
|
2023-04-16 22:33:51 +03:00
|
|
|
useHydratedHead({
|
2022-11-30 00:50:13 +03:00
|
|
|
title: () => t('account.pinned'),
|
2022-11-26 15:58:10 +03:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2024-08-16 18:20:49 +03:00
|
|
|
<NuxtLink to="/pinned" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
|
2023-01-03 13:45:32 +03:00
|
|
|
<div i-ri:pushpin-line />
|
|
|
|
<span>{{ t('account.pinned') }}</span>
|
|
|
|
</NuxtLink>
|
2022-11-26 15:58:10 +03:00
|
|
|
</template>
|
|
|
|
|
2023-01-15 11:38:02 +03:00
|
|
|
<TimelinePinned v-if="isHydrated && currentUser" />
|
2022-11-26 15:58:10 +03:00
|
|
|
</MainContent>
|
|
|
|
</template>
|