elk/pages/public/index.vue

17 lines
316 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-11-22 23:08:36 +00:00
2022-11-17 07:35:42 +00:00
const paginator = masto.timelines.getPublicIterable()
</script>
<template>
<MainContent>
<template #title>
2022-11-23 08:08:49 +00:00
<span text-lg font-bold>Federated Timeline</span>
</template>
2022-11-24 06:42:26 +00:00
<slot>
2022-11-17 07:35:42 +00:00
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>