elk/pages/notifications/index.vue

11 lines
236 B
Vue
Raw Normal View History

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