frontend/pages/global.vue
2024-12-04 15:17:47 +01:00

25 lines
520 B
Vue

<template>
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Global />
</TimelineScroller>
</div>
</template>
<script setup lang="ts">
import Global from "~/components/timelines/global.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
definePageMeta({
layout: "app",
breadcrumbs: [
{
text: "Timelines",
},
{
text: "Global",
href: "/global",
},
],
});
</script>