mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
29 lines
556 B
Vue
29 lines
556 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";
|
|
|
|
useHead({
|
|
title: "Global",
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "app",
|
|
breadcrumbs: [
|
|
{
|
|
text: "Timelines",
|
|
},
|
|
{
|
|
text: "Global",
|
|
href: "/global",
|
|
},
|
|
],
|
|
});
|
|
</script> |