elk/pages/notifications/index.vue
2023-04-16 21:33:51 +02:00

11 lines
226 B
Vue

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