elk/pages/notifications/index.vue

14 lines
332 B
Vue
Raw Normal View History

<script setup lang="ts">
const { t } = useI18n()
useHeadFixed({
title: () => `${t('tab.notifications_all')} | ${t('nav.notifications')}`,
})
onMounted(() => {
useNuxtApp().$trackScroll.registerCustomRoute('/notifications')
})
</script>
<template>
<TimelineNotifications v-if="isHydrated" path="/notifications" />
</template>