mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
24 lines
400 B
Vue
24 lines
400 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const paginator = useMasto().conversations.getIterator()
|
|
|
|
useHead({
|
|
title: 'Conversations',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<span text-lg font-bold>Conversations</span>
|
|
</template>
|
|
|
|
<slot>
|
|
<ConversationPaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|