1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-22 18:48:00 +09:00
elk/pages/public/index.vue

22 lines
469 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().timelines.getPublicIterable()
const stream = await useMasto().stream.streamPublicTimeline()
onBeforeUnmount(() => stream.disconnect())
2022-11-25 20:48:48 +09:00
useHead({
2022-11-26 21:58:10 +09:00
title: 'Federated',
2022-11-25 20:48:48 +09:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-26 21:58:10 +09:00
<span text-lg font-bold>Federated Timeline</span>
</template>
2022-11-26 21:58:10 +09:00
<slot>
<TimelinePaginator v-bind="{ paginator, stream }" />
</slot>
</MainContent>
</template>