feat: status details
This commit is contained in:
parent
9cc837f5df
commit
c7ae7d5a1c
17 changed files with 151 additions and 125 deletions
8
pages/public.vue
Normal file
8
pages/public.vue
Normal file
|
@ -0,0 +1,8 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue