mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
14 lines
438 B
Vue
14 lines
438 B
Vue
<script setup lang="ts">
|
|
import type { Status } from 'masto'
|
|
const paginator = useMasto().timelines.iterateHome()
|
|
const stream = useMasto().stream.streamUser()
|
|
onBeforeUnmount(() => stream?.then(s => s.disconnect()))
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<PublishWidget draft-key="home" border="b base" />
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="timelineWithReorderedReplies" context="home" />
|
|
</div>
|
|
</template>
|