2022-11-15 22:50:41 +09:00
|
|
|
<script setup lang="ts">
|
2022-11-23 08:08:36 +09:00
|
|
|
|
2022-11-17 16:35:42 +09:00
|
|
|
const paginator = masto.timelines.getPublicIterable()
|
2022-11-15 22:50:41 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-23 17:08:49 +09:00
|
|
|
<span text-lg font-bold>Federated Timeline</span>
|
2022-11-15 22:50:41 +09:00
|
|
|
</template>
|
|
|
|
<template #actions>
|
2022-11-23 17:08:49 +09:00
|
|
|
<div i-ri:equalizer-fill mr-1 h-6 />
|
2022-11-15 22:50:41 +09:00
|
|
|
</template>
|
|
|
|
<slot>
|
2022-11-17 16:35:42 +09:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 22:50:41 +09:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|