1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-14 22:58:04 +09:00
elk/pages/public/local.vue

24 lines
539 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().timelines.getPublicIterable({ local: true })
const stream = await useMasto().stream.streamCommunityTimeline()
onBeforeUnmount(() => stream.disconnect())
2022-11-25 20:48:48 +09:00
2022-11-28 23:25:32 +09:00
const { t } = useI18n()
2022-11-25 20:48:48 +09:00
useHead({
2022-11-28 23:25:32 +09:00
title: () => t('nav_side.local'),
2022-11-25 20:48:48 +09:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-29 01:55:05 +09:00
<span text-lg font-bold>{{ t('title.local_timeline') }}</span>
</template>
<slot>
<TimelinePaginator v-bind="{ paginator, stream }" />
</slot>
</MainContent>
</template>