2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-15 13:54:13 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
2022-11-15 13:50:41 +00:00
|
|
|
|
|
|
|
const masto = await useMasto()
|
|
|
|
const paginator = masto.timelines.getHomeIterable()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
|
|
|
<div i-ri:home-fill h-6 mr-1 /><span>Home</span>
|
|
|
|
</template>
|
|
|
|
<template #actions>
|
|
|
|
<div color-gray i-ri:equalizer-fill mr-1 h-6 />
|
|
|
|
</template>
|
|
|
|
<slot>
|
2022-11-15 13:54:13 +00:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|