elk/pages/home.vue

26 wiersze
579 B
Vue
Czysty Zwykły widok Historia

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
alias: ['/signin/callback'],
})
if (useRoute().path === '/signin/callback') {
// This only cleans up the URL; page content should stay the same
useRouter().push('/home')
}
const paginator = useMasto().timelines.getHomeIterable()
</script>
<template>
<MainContent>
<template #title>
2022-11-23 08:08:49 +00:00
<span text-lg font-bold>Home</span>
</template>
<slot>
2022-11-24 07:53:27 +00:00
<PublishWidget draft-key="home" border="b base" />
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>