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