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