2022-11-16 00:21:54 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Notification, Paginator } from 'masto'
|
|
|
|
|
|
|
|
const { paginator } = defineProps<{
|
|
|
|
paginator: Paginator<any, Notification[]>
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 08:47:14 +03:00
|
|
|
<CommonPaginator :paginator="paginator">
|
2022-11-17 10:35:42 +03:00
|
|
|
<template #default="{ item }">
|
|
|
|
<NotificationCard
|
|
|
|
:notification="item"
|
2022-11-24 00:41:11 +03:00
|
|
|
hover:bg-active
|
2022-11-23 11:08:49 +03:00
|
|
|
border="b base" pt-4
|
2022-11-17 10:35:42 +03:00
|
|
|
/>
|
2022-11-16 19:11:08 +03:00
|
|
|
</template>
|
|
|
|
</CommonPaginator>
|
2022-11-16 00:21:54 +03:00
|
|
|
</template>
|