elk/pages/public/index.vue

20 lines
350 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-11-17 10:35:42 +03:00
const paginator = masto.timelines.getPublicIterable()
2022-11-25 14:48:48 +03:00
useHead({
title: 'Federated'
})
</script>
<template>
<MainContent>
<template #title>
2022-11-23 11:08:49 +03:00
<span text-lg font-bold>Federated Timeline</span>
</template>
2022-11-24 09:42:26 +03:00
<slot>
2022-11-17 10:35:42 +03:00
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>