elk/pages/public/local.vue
2022-11-26 16:58:30 +01:00

20 lines
363 B
Vue

<script setup lang="ts">
const paginator = useMasto().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>