1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 08:59:59 +01:00
elk/pages/notifications/mention.vue

11 lines
235 B
Vue
Raw Normal View History

<script setup lang="ts">
const { t } = useI18n()
useHeadFixed({
2022-12-27 17:49:15 +00:00
title: () => `${t('tab.notifications_mention')} | ${t('nav.notifications')}`,
})
</script>
<template>
<TimelineNotifications v-if="isMastoInitialised" />
</template>