mirror of https://github.com/elk-zone/elk.git
22 lines
551 B
Vue
22 lines
551 B
Vue
<script setup lang="ts">
|
|
import type { Paginator, mastodon } from 'masto'
|
|
|
|
const { paginator } = defineProps<{
|
|
paginator: Paginator<mastodon.v1.Account[], mastodon.DefaultPaginationParams>
|
|
relationshipContext?: 'followedBy' | 'following'
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator :paginator="paginator">
|
|
<template #default="{ item }">
|
|
<AccountCard
|
|
:account="item"
|
|
:relationship-context="relationshipContext"
|
|
hover-card
|
|
border="b base" py2 px4
|
|
/>
|
|
</template>
|
|
</CommonPaginator>
|
|
</template>
|