55372aa530
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
25 lines
508 B
Vue
25 lines
508 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
|
|
useHydratedHead({
|
|
title: () => t('account.pinned'),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<NuxtLink to="/pinned" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
|
|
<div i-ri:pushpin-line />
|
|
<span>{{ t('account.pinned') }}</span>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<TimelinePinned v-if="isHydrated && currentUser" />
|
|
</MainContent>
|
|
</template>
|