mirror of https://github.com/elk-zone/elk.git
22 lines
435 B
Vue
22 lines
435 B
Vue
<script setup lang="ts">
|
|
import type { Notification, Paginator } from 'masto'
|
|
|
|
const { paginator } = defineProps<{
|
|
paginator: Paginator<any, Notification[]>
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator
|
|
:paginator="paginator"
|
|
border="t border"
|
|
>
|
|
<template #default="{ item }">
|
|
<NotificationCard
|
|
:notification="item"
|
|
border="t border" pt-4
|
|
/>
|
|
</template>
|
|
</CommonPaginator>
|
|
</template>
|