1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-07 04:39:10 +01:00
elk/pages/index.vue

15 lines
395 B
Vue
Raw Normal View History

2022-11-13 05:34:43 +00:00
<script setup lang="ts">
2022-11-14 14:54:30 +00:00
const token = useCookie('nuxtodon-token')
const router = useRouter()
2022-11-15 11:54:07 +00:00
// TODO: move to middleware
2022-11-14 14:54:30 +00:00
if (!token.value)
router.replace('/public')
2022-11-14 02:20:07 +00:00
const masto = await useMasto()
2022-11-14 14:54:30 +00:00
const { data: timelines } = await useAsyncData('timelines-home', () => masto.timelines.fetchHome().then(r => r.value))
2022-11-13 05:34:43 +00:00
</script>
<template>
2022-11-14 14:54:30 +00:00
<TimelineList :timelines="timelines" />
2022-11-13 05:34:43 +00:00
</template>