2022-12-13 13:50:42 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const { t } = useI18n()
|
|
|
|
useHeadFixed({
|
|
|
|
title: () => `${t('tab.notifications_mention')} | ${t('nav_side.notifications')}`,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-26 05:39:18 +00:00
|
|
|
<TimelineNotifications v-if="isMastoInitialised" />
|
2022-12-13 13:50:42 +00:00
|
|
|
</template>
|