elk/pages/conversations.vue

24 lines
395 B
Vue
Raw Normal View History

2022-11-18 10:37:22 +01:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = masto.conversations.getIterator()
2022-11-25 12:48:48 +01:00
useHead({
title: 'Conversations',
})
2022-11-18 10:37:22 +01:00
</script>
<template>
<MainContent>
<template #title>
2022-11-23 09:08:49 +01:00
<span text-lg font-bold>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>