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

11 lines
223 B
Vue

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