mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
ab2881b9a2
Co-authored-by: Ayaka Rizumu <464388324@qq.com>
11 lines
218 B
Vue
11 lines
218 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
useHead({
|
|
title: () => `${t('tab.notifications_all')} | ${t('nav.notifications')}`,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<TimelineNotifications v-if="isHydrated" />
|
|
</template>
|