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))
|
|
|
|
</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>
|
|
|
|
<template #actions>
|
2022-11-23 08:08:49 +00:00
|
|
|
<div i-ri:equalizer-fill mr-1 h-6 />
|
2022-11-15 13:50:41 +00:00
|
|
|
</template>
|
|
|
|
<slot>
|
|
|
|
<TimelineList :timelines="timelines" />
|
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|