2022-12-13 14:50:42 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
const { t } = useI18n()
|
2023-04-01 13:14:12 +02:00
|
|
|
useHead({
|
2023-01-12 00:08:31 +01:00
|
|
|
title: () => `${t('tab.notifications_mention')} | ${t('nav.notifications')}`,
|
2022-12-13 14:50:42 +01:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-15 09:38:02 +01:00
|
|
|
<TimelineMentions v-if="isHydrated" />
|
2022-12-13 14:50:42 +01:00
|
|
|
</template>
|