elk/pages/conversations.vue

25 lines
520 B
Vue
Raw Normal View History

2022-11-18 09:37:22 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
2022-11-28 14:25:32 +00:00
const { t } = useI18n()
useHeadFixed({
2022-11-28 14:25:32 +00:00
title: () => t('nav_side.conversations'),
2022-11-25 11:48:48 +00:00
})
2022-11-18 09:37:22 +00:00
</script>
<template>
<MainContent>
<template #title>
2022-11-29 20:15:53 +00:00
<NuxtLink to="/conversations" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:at-line />
<span>{{ t('nav_side.conversations') }}</span>
</NuxtLink>
2022-11-18 09:37:22 +00:00
</template>
2022-11-24 06:42:26 +00:00
<TimelineConversations v-if="isMastoInitialised" />
2022-11-18 09:37:22 +00:00
</MainContent>
</template>