18 lines
471 B
Vue
18 lines
471 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
name: 'list',
|
|
})
|
|
|
|
const params = useRoute().params
|
|
const listId = $(computedEager(() => params.list as string))
|
|
|
|
const client = useMastoClient()
|
|
|
|
const paginator = client.v1.timelines.list.$select(listId).list()
|
|
const stream = useStreaming(client => client.list.subscribe({ list: listId }))
|
|
</script>
|
|
|
|
<template>
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderedTimeline" context="home" />
|
|
</template>
|