mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
11 lines
230 B
Vue
11 lines
230 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
useHeadFixed({
|
|
title: () => `${t('tab.notifications_mention')} | ${t('nav.notifications')}`,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<TimelineMentions v-if="isMastoInitialised" />
|
|
</template>
|