1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00
elk/pages/notifications/mention.vue
2023-04-16 21:33:51 +02:00

11 lines
225 B
Vue

<script setup lang="ts">
const { t } = useI18n()
useHydratedHead({
title: () => `${t('tab.notifications_mention')} | ${t('nav.notifications')}`,
})
</script>
<template>
<TimelineMentions v-if="isHydrated" />
</template>