mirror of
https://github.com/elk-zone/elk
synced 2024-12-12 05:38:04 +09:00
9 lines
191 B
Vue
9 lines
191 B
Vue
<script setup lang="ts">
|
|
const masto = await useMasto()
|
|
const paginator = masto.timelines.getPublicIterable()
|
|
</script>
|
|
|
|
<template>
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</template>
|