mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
13 lines
391 B
Vue
13 lines
391 B
Vue
<script setup lang="ts">
|
|
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="reorderedTimeline" context="home" />
|
|
</div>
|
|
</template>
|