mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-22 01:15:25 +03:00
baa2696d31
Co-authored-by: Daniel Roe <daniel@roe.dev>
13 lines
415 B
Vue
13 lines
415 B
Vue
<script setup lang="ts">
|
|
// Default limit is 20 notifications, and servers are normally caped to 30
|
|
const paginator = useMasto().notifications.iterate({ limit: 30, types: ['mention'] })
|
|
|
|
const { clearNotifications } = useNotifications()
|
|
onActivated(clearNotifications)
|
|
|
|
const stream = await useMasto().stream.streamUser()
|
|
</script>
|
|
|
|
<template>
|
|
<NotificationPaginator v-bind="{ paginator, stream }" />
|
|
</template>
|