1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-19 17:18:00 +09:00
elk/pages/notifications/mention.vue

11 lines
222 B
Vue
Raw Normal View History

<script setup lang="ts">
const { t } = useI18n()
useHeadFixed({
title: () => `${t('tab.notifications_mention')} | ${t('nav.notifications')}`,
})
</script>
<template>
2023-01-15 17:38:02 +09:00
<TimelineMentions v-if="isHydrated" />
</template>