2022-12-28 21:43:46 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
const paginator = useMasto().v1.timelines.listPublic({ local: true })
|
|
|
|
const stream = useMasto().v1.stream.streamCommunityTimeline()
|
2022-12-28 21:43:46 +00:00
|
|
|
onBeforeUnmount(() => stream.then(s => s.disconnect()))
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
|
|
|
|
</div>
|
|
|
|
</template>
|