1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-01 00:08:11 +09:00
elk/pages/notifications/mention.vue
2023-01-15 16:38:02 +08:00

11 lines
222 B
Vue

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