elk/pages/public/local.vue
2022-11-25 19:48:48 +08:00

20 lines
423 B
Vue

<script setup lang="ts">
const { data: timelines } = await useAsyncData('timelines-home', () => masto.timelines.fetchPublic({ local: true }).then(r => r.value))
useHead({
title: 'Local'
})
</script>
<template>
<MainContent>
<template #title>
<span text-lg font-bold>Local timeline</span>
</template>
<slot>
<TimelineList :timelines="timelines" />
</slot>
</MainContent>
</template>