2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-26 15:58:30 +00:00
|
|
|
const paginator = useMasto().timelines.getPublicIterable()
|
2022-11-25 11:48:48 +00:00
|
|
|
|
|
|
|
useHead({
|
2022-11-26 12:58:10 +00:00
|
|
|
title: 'Federated',
|
2022-11-25 11:48:48 +00:00
|
|
|
})
|
2022-11-15 13:50:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-26 12:58:10 +00:00
|
|
|
<span text-lg font-bold>Federated Timeline</span>
|
2022-11-15 13:50:41 +00:00
|
|
|
</template>
|
2022-11-26 12:58:10 +00:00
|
|
|
|
2022-11-15 13:50:41 +00:00
|
|
|
<slot>
|
2022-11-17 07:35:42 +00:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|