mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-06 00:49:58 +00:00
ab2881b9a2
Co-authored-by: Ayaka Rizumu <464388324@qq.com>
25 lines
500 B
Vue
25 lines
500 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
|
|
useHead({
|
|
title: () => t('nav.conversations'),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<NuxtLink to="/conversations" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
|
|
<div i-ri:at-line />
|
|
<span>{{ t('nav.conversations') }}</span>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<TimelineConversations v-if="isHydrated" />
|
|
</MainContent>
|
|
</template>
|