elk/pages/public/local.vue
2022-11-26 12:08:17 +08:00

20 lines
358 B
Vue

<script setup lang="ts">
const paginator = masto.timelines.getPublicIterable({ local: true })
useHead({
title: 'Local',
})
</script>
<template>
<MainContent>
<template #title>
<span text-lg font-bold>Local timeline</span>
</template>
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>