frontend/pages/notifications.vue

29 lines
642 B
Vue
Raw Normal View History

<template>
<TimelineScroller>
<div class="rounded overflow-hidden">
<Notifications />
</div>
</TimelineScroller>
</template>
<script lang="ts" setup>
import Notifications from "~/components/timelines/notifications.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
import * as m from "~/paraglide/messages.js";
useHead({
title: m.that_patchy_mare_snip(),
});
definePageMeta({
layout: "app",
2024-12-07 23:05:26 +01:00
breadcrumbs: () => [
{
text: m.that_patchy_mare_snip(),
href: "/notifications",
},
],
requiresAuth: true,
});
2024-12-17 00:10:24 +01:00
</script>