elk/pages/conversations.vue

26 lines
463 B
Vue
Raw Normal View History

2022-11-18 10:37:22 +01:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().conversations.getIterator()
2022-11-25 12:48:48 +01:00
2022-11-28 15:25:32 +01:00
const { t } = useI18n()
2022-11-25 12:48:48 +01:00
useHead({
2022-11-28 15:25:32 +01:00
title: () => t('nav_side.conversations'),
2022-11-25 12:48:48 +01:00
})
2022-11-18 10:37:22 +01:00
</script>
<template>
<MainContent>
<template #title>
2022-11-28 15:25:32 +01:00
<span text-lg font-bold>{{ t('nav_side.conversations') }}</span>
2022-11-18 10:37:22 +01:00
</template>
2022-11-24 07:42:26 +01:00
2022-11-18 10:37:22 +01:00
<slot>
<ConversationPaginator :paginator="paginator" />
</slot>
</MainContent>
</template>