2022-11-15 16:56:11 +01:00
|
|
|
<script setup lang="ts">
|
2023-01-08 07:21:09 +01:00
|
|
|
import type { Paginator, mastodon } from 'masto'
|
2022-11-15 16:56:11 +01:00
|
|
|
|
|
|
|
const { paginator } = defineProps<{
|
2023-01-08 07:21:09 +01:00
|
|
|
paginator: Paginator<mastodon.v1.Account[], mastodon.DefaultPaginationParams>
|
2022-11-15 16:56:11 +01:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 06:47:14 +01:00
|
|
|
<CommonPaginator :paginator="paginator">
|
2022-11-17 08:35:42 +01:00
|
|
|
<template #default="{ item }">
|
|
|
|
<AccountCard
|
|
|
|
:account="item"
|
2022-11-28 18:24:39 +01:00
|
|
|
hover-card
|
2022-11-24 07:18:05 +01:00
|
|
|
border="b base" py2 px4
|
2022-11-17 08:35:42 +01:00
|
|
|
/>
|
2022-11-16 17:11:08 +01:00
|
|
|
</template>
|
|
|
|
</CommonPaginator>
|
2022-11-15 16:56:11 +01:00
|
|
|
</template>
|