elk/pages/public.vue
2022-11-15 21:00:28 +08:00

9 lines
191 B
Vue

<script setup lang="ts">
const masto = await useMasto()
const paginator = masto.timelines.getPublicIterable()
</script>
<template>
<TimelinePaginator :paginator="paginator" />
</template>