mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
20 lines
350 B
Vue
20 lines
350 B
Vue
<script setup lang="ts">
|
|
const paginator = masto.timelines.getPublicIterable()
|
|
|
|
useHead({
|
|
title: 'Federated'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<span text-lg font-bold>Federated Timeline</span>
|
|
</template>
|
|
|
|
<slot>
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|