2022-12-13 13:50:42 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const { t } = useI18n()
|
2024-02-24 12:24:21 +00:00
|
|
|
|
2023-04-16 19:33:51 +00:00
|
|
|
useHydratedHead({
|
2023-01-11 23:08:31 +00:00
|
|
|
title: () => `${t('tab.notifications_all')} | ${t('nav.notifications')}`,
|
2022-12-13 13:50:42 +00:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-15 08:38:02 +00:00
|
|
|
<TimelineNotifications v-if="isHydrated" />
|
2022-12-13 13:50:42 +00:00
|
|
|
</template>
|