elk/pages/public/local.vue

20 lines
423 B
Vue
Raw Normal View History

<script setup lang="ts">
const { data: timelines } = await useAsyncData('timelines-home', () => masto.timelines.fetchPublic({ local: true }).then(r => r.value))
2022-11-25 12:48:48 +01:00
useHead({
title: 'Local'
})
</script>
<template>
<MainContent>
<template #title>
2022-11-23 09:08:49 +01:00
<span text-lg font-bold>Local timeline</span>
</template>
2022-11-24 07:42:26 +01:00
<slot>
<TimelineList :timelines="timelines" />
</slot>
</MainContent>
</template>