2022-12-26 05:39:18 +00:00
|
|
|
<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)
|
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
const stream = useMasto().stream.streamUser()
|
2022-12-26 05:39:18 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NotificationPaginator v-bind="{ paginator, stream }" />
|
|
|
|
</template>
|