1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-24 10:31:05 +03:00
elk/pages/public/index.vue

24 lines
529 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 19:48:48 +08:00
2022-11-28 22:25:32 +08:00
const { t } = useI18n()
2022-11-25 19:48:48 +08:00
useHead({
2022-11-28 22:25:32 +08:00
title: () => t('nav_side.federated'),
2022-11-25 19:48:48 +08:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-28 22:25:32 +08:00
<span text-lg font-bold>{{ t('title.federated-timeline') }}</span>
</template>
2022-11-26 20:58:10 +08:00
<slot>
<TimelinePaginator v-bind="{ paginator, stream }" />
</slot>
</MainContent>
</template>