1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 20:29:08 +01:00
elk/components/timeline/TimelinePublicLocal.vue
2023-01-08 14:21:09 +08:00

12 lines
338 B
Vue

<script setup lang="ts">
const paginator = useMasto().v1.timelines.listPublic({ local: true })
const stream = useMasto().v1.stream.streamCommunityTimeline()
onBeforeUnmount(() => stream.then(s => s.disconnect()))
</script>
<template>
<div>
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
</div>
</template>