elk/pages/conversations.vue

25 lines
505 B
Vue
Raw Normal View History

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()
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
2023-01-15 11:38:02 +03:00
<TimelineConversations v-if="isHydrated" />
2022-11-18 12:37:22 +03:00
</MainContent>
</template>