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>