elk/pages/conversations.vue

25 lines
518 B
Vue
Raw Normal View History

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