mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
9 lines
255 B
Vue
9 lines
255 B
Vue
|
<script setup lang="ts">
|
||
|
const masto = await useMasto()
|
||
|
const { data: timelines } = await useAsyncData('timelines-public', () => masto.timelines.fetchPublic().then(r => r.value))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<TimelineList :timelines="timelines" />
|
||
|
</template>
|