1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-23 22:56:09 +09:00
elk/pages/conversations.vue

20 lines
355 B
Vue
Raw Normal View History

2022-11-18 18:37:22 +09:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = masto.conversations.getIterator()
</script>
<template>
<MainContent>
<template #title>
2022-11-23 17:08:49 +09:00
<span text-lg font-bold>Conversations</span>
2022-11-18 18:37:22 +09:00
</template>
2022-11-24 15:42:26 +09:00
2022-11-18 18:37:22 +09:00
<slot>
<ConversationPaginator :paginator="paginator" />
</slot>
</MainContent>
</template>