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