elk/pages/notifications/index.vue
2023-01-09 22:27:03 +02:00

10 lines
236 B
Vue

<script setup lang="ts">
const { $t } = useFluent()
useHeadFixed({
title: () => `${$t('tab_notifications_all')} | ${$t('nav_notifications')}`,
})
</script>
<template>
<TimelineNotifications v-if="isMastoInitialised" />
</template>