2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const masto = await useMasto()
|
2022-11-17 07:35:42 +00:00
|
|
|
const paginator = masto.timelines.getPublicIterable()
|
2022-11-15 13:50:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
|
|
|
<div i-ri:earth-fill h-6 mr-1 /><span>Federated Timeline</span>
|
|
|
|
</template>
|
|
|
|
<template #actions>
|
|
|
|
<div color-gray i-ri:equalizer-fill mr-1 h-6 />
|
|
|
|
</template>
|
|
|
|
<slot>
|
2022-11-17 07:35:42 +00:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|