2024-12-02 22:55:36 +01:00
|
|
|
<template>
|
2025-03-28 01:16:24 +01:00
|
|
|
<Sidebar
|
|
|
|
|
side="right"
|
|
|
|
|
collapsible="none"
|
|
|
|
|
class="hidden md:flex"
|
|
|
|
|
style="--sidebar-width: 24rem; --sidebar-width-mobile: 18rem"
|
|
|
|
|
>
|
|
|
|
|
<SidebarContent class="overflow-y-auto *:p-2 *:gap-2">
|
2024-12-02 22:55:36 +01:00
|
|
|
<NotificationsTimeline />
|
|
|
|
|
</SidebarContent>
|
|
|
|
|
</Sidebar>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-03-28 01:16:24 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import NotificationsTimeline from "~/components/timelines/notifications.vue";
|
|
|
|
|
import { Sidebar, SidebarContent } from "~/components/ui/sidebar";
|
2025-02-09 19:39:05 +01:00
|
|
|
</script>
|