elk/pages/public/local.vue

20 lines
363 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().timelines.getPublicIterable({ local: true })
2022-11-25 11:48:48 +00:00
useHead({
title: 'Local',
2022-11-25 11:48:48 +00:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-23 08:08:49 +00:00
<span text-lg font-bold>Local timeline</span>
</template>
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>