mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
19 lines
484 B
Vue
19 lines
484 B
Vue
<script setup lang="ts">
|
|
import type { Account, Paginator } from 'masto'
|
|
|
|
const { paginator } = defineProps<{
|
|
paginator: Paginator<any, Account[]>
|
|
}>()
|
|
|
|
const { items: accounts, state, endAnchor } = usePaginator(paginator)
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator :state="state">
|
|
<template v-for="account of accounts" :key="account.id">
|
|
<AccountCard :account="account" border="t border" pt-4 />
|
|
</template>
|
|
<div ref="endAnchor" />
|
|
</CommonPaginator>
|
|
</template>
|