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