2022-11-18 12:37:22 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-28 17:25:32 +03:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2022-11-30 01:49:25 +03:00
|
|
|
useHeadFixed({
|
2022-12-27 20:49:15 +03:00
|
|
|
title: () => t('nav.conversations'),
|
2022-11-25 14:48:48 +03:00
|
|
|
})
|
2022-11-18 12:37:22 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2023-01-05 02:17:30 +03:00
|
|
|
<NuxtLink to="/conversations" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
|
2022-11-29 23:15:53 +03:00
|
|
|
<div i-ri:at-line />
|
2022-12-27 20:49:15 +03:00
|
|
|
<span>{{ t('nav.conversations') }}</span>
|
2022-11-29 23:15:53 +03:00
|
|
|
</NuxtLink>
|
2022-11-18 12:37:22 +03:00
|
|
|
</template>
|
2022-11-24 09:42:26 +03:00
|
|
|
|
2022-12-26 08:39:18 +03:00
|
|
|
<TimelineConversations v-if="isMastoInitialised" />
|
2022-11-18 12:37:22 +03:00
|
|
|
</MainContent>
|
|
|
|
</template>
|