1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-07 04:39:10 +01:00
elk/pages/public/index.vue
2022-11-24 14:42:26 +08:00

17 lines
316 B
Vue

<script setup lang="ts">
const paginator = masto.timelines.getPublicIterable()
</script>
<template>
<MainContent>
<template #title>
<span text-lg font-bold>Federated Timeline</span>
</template>
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>