2022-12-28 21:43:46 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-15 08:38:02 +00:00
|
|
|
const paginator = useMastoClient().v1.timelines.listPublic({ limit: 30, local: true })
|
|
|
|
const stream = useStreaming(client => client.v1.stream.streamCommunityTimeline())
|
2022-12-28 21:43:46 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
|
|
|
|
</div>
|
|
|
|
</template>
|