1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-13 06:08:06 +09:00
elk/pages/public.vue

9 lines
191 B
Vue
Raw Normal View History

2022-11-14 23:54:30 +09:00
<script setup lang="ts">
const masto = await useMasto()
2022-11-15 22:00:28 +09:00
const paginator = masto.timelines.getPublicIterable()
2022-11-14 23:54:30 +09:00
</script>
<template>
2022-11-15 22:00:28 +09:00
<TimelinePaginator :paginator="paginator" />
2022-11-14 23:54:30 +09:00
</template>