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