mirror of https://github.com/elk-zone/elk.git
26 lines
579 B
Vue
26 lines
579 B
Vue
<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>
|
|
<span text-lg font-bold>Home</span>
|
|
</template>
|
|
<slot>
|
|
<PublishWidget draft-key="home" border="b base" />
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|