elk/pages/[[server]]/public/local.vue
Joaquín Sánchez ab2881b9a2
refactor: remove useHeadFixed workaround (#1938)
Co-authored-by: Ayaka Rizumu <464388324@qq.com>
2023-04-01 04:14:12 -07:00

22 lines
466 B
Vue

<script setup lang="ts">
const { t } = useI18n()
useHead({
title: () => t('title.local_timeline'),
})
</script>
<template>
<MainContent>
<template #title>
<NuxtLink to="/public/local" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
<div i-ri:group-2-line />
<span>{{ t('title.local_timeline') }}</span>
</NuxtLink>
</template>
<TimelinePublicLocal v-if="isHydrated" />
</MainContent>
</template>