elk/components/timeline/TimelineHome.vue

13 lines
407 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().v1.timelines.listHome({ limit: 30 })
2023-01-08 06:21:09 +00:00
const stream = useMasto().v1.stream.streamUser()
onBeforeUnmount(() => stream?.then(s => s.disconnect()))
</script>
<template>
<div>
2022-12-27 22:18:16 +00:00
<PublishWidget draft-key="home" border="b base" />
2023-01-04 12:09:09 +00:00
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderedTimeline" context="home" />
</div>
</template>