elk/components/timeline/TimelinePublic.vue

12 wiersze
333 B
Vue
Czysty Zwykły widok Historia

<script setup lang="ts">
const paginator = useMasto().v1.timelines.listPublic({ limit: 30 })
2023-01-08 06:21:09 +00:00
const stream = useMasto().v1.stream.streamPublicTimeline()
onBeforeUnmount(() => stream.then(s => s.disconnect()))
</script>
<template>
<div>
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
</div>
</template>