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