1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-25 11:02:56 +03:00
elk/pages/notifications/index.vue
2023-01-15 16:38:02 +08:00

10 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>