elk/pages/public.vue

9 wiersze
191 B
Vue

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