2024-05-01 10:40:33 +02:00
|
|
|
<template>
|
2025-03-28 01:16:24 +01:00
|
|
|
<TimelineScroller>
|
|
|
|
|
<div class="rounded overflow-hidden">
|
|
|
|
|
<Notifications />
|
|
|
|
|
</div>
|
|
|
|
|
</TimelineScroller>
|
2024-05-01 10:40:33 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-06-21 04:09:09 +02:00
|
|
|
import Notifications from "~/components/timelines/notifications.vue";
|
|
|
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
2025-07-16 07:48:39 +02:00
|
|
|
import * as m from "~~/paraglide/messages.js";
|
2024-06-21 04:09:09 +02:00
|
|
|
|
2024-12-07 11:21:13 +01:00
|
|
|
useHead({
|
2024-12-07 22:17:22 +01:00
|
|
|
title: m.that_patchy_mare_snip(),
|
2024-12-07 11:21:13 +01:00
|
|
|
});
|
|
|
|
|
|
2024-05-01 10:40:33 +02:00
|
|
|
definePageMeta({
|
|
|
|
|
layout: "app",
|
2024-12-07 23:05:26 +01:00
|
|
|
breadcrumbs: () => [
|
2024-12-04 15:17:47 +01:00
|
|
|
{
|
2024-12-07 22:17:22 +01:00
|
|
|
text: m.that_patchy_mare_snip(),
|
2024-12-04 15:17:47 +01:00
|
|
|
href: "/notifications",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
requiresAuth: true,
|
2024-05-01 10:40:33 +02:00
|
|
|
});
|
2024-12-17 00:10:24 +01:00
|
|
|
</script>
|