mirror of
https://github.com/elk-zone/elk
synced 2024-12-14 06:38:05 +09: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>
|