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