mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
20 lines
428 B
Vue
20 lines
428 B
Vue
<script setup lang="ts">
|
|
import type { Notification, Paginator } from 'masto'
|
|
|
|
const { paginator } = defineProps<{
|
|
paginator: Paginator<any, Notification[]>
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator :paginator="paginator">
|
|
<template #default="{ item }">
|
|
<NotificationCard
|
|
:notification="item"
|
|
hover:bg-active
|
|
border="b base" pt-4
|
|
/>
|
|
</template>
|
|
</CommonPaginator>
|
|
</template>
|