1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-15 15:18:00 +09:00
elk/pages/public/index.vue

17 lines
316 B
Vue
Raw Normal View History

<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()
</script>
<template>
<MainContent>
<template #title>
2022-11-23 17:08:49 +09:00
<span text-lg font-bold>Federated Timeline</span>
</template>
2022-11-24 15:42:26 +09:00
<slot>
2022-11-17 16:35:42 +09:00
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>