mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
20 lines
399 B
Vue
20 lines
399 B
Vue
<template>
|
|
<TimelineScroller>
|
|
<Public />
|
|
</TimelineScroller>
|
|
</template>
|
|
|
|
<script setup lang="tsx">
|
|
import Public from "~/components/timelines/public.vue";
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
|
import * as m from "~~/paraglide/messages.js";
|
|
|
|
useHead({
|
|
title: m.lost_trick_dog_grace(),
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "app",
|
|
});
|
|
</script>
|