mirror of
https://github.com/elk-zone/elk.git
synced 2025-03-20 07:00:27 +03:00
23 lines
552 B
Vue
23 lines
552 B
Vue
<script setup lang="ts">
|
|
const token = useCookie('nuxtodon-token')
|
|
const router = useRouter()
|
|
if (!token.value)
|
|
router.replace('/public')
|
|
|
|
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>
|
|
<TimelinePaginator :timelines="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|