2022-11-15 22:50:41 +09:00
|
|
|
<script setup lang="ts">
|
2022-11-15 22:54:13 +09:00
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
2022-11-15 22:50:41 +09:00
|
|
|
|
2022-11-27 00:42:58 +09:00
|
|
|
const paginator = useMasto().timelines.getHomeIterable()
|
2022-11-15 22:50:41 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-23 17:08:49 +09:00
|
|
|
<span text-lg font-bold>Home</span>
|
2022-11-15 22:50:41 +09:00
|
|
|
</template>
|
|
|
|
<slot>
|
2022-11-24 16:53:27 +09:00
|
|
|
<PublishWidget draft-key="home" border="b base" />
|
2022-11-15 22:54:13 +09:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 22:50:41 +09:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|