frontend/pages/global.vue

29 lines
556 B
Vue
Raw Normal View History

<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";
useHead({
title: "Global",
});
definePageMeta({
layout: "app",
breadcrumbs: [
{
text: "Timelines",
},
{
text: "Global",
href: "/global",
},
],
});
</script>