mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
12 lines
335 B
Vue
12 lines
335 B
Vue
|
<script setup lang="ts">
|
||
|
const paginator = useMasto().timelines.iteratePublic({ local: true })
|
||
|
const stream = useMasto().stream.streamCommunityTimeline()
|
||
|
onBeforeUnmount(() => stream.then(s => s.disconnect()))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
|
||
|
</div>
|
||
|
</template>
|