2024-04-22 09:38:51 +02:00
|
|
|
<template>
|
2025-03-28 01:16:24 +01:00
|
|
|
<TimelineScroller>
|
|
|
|
|
<Public />
|
|
|
|
|
</TimelineScroller>
|
2024-04-22 09:38:51 +02:00
|
|
|
</template>
|
|
|
|
|
|
2024-12-26 14:34:59 +01:00
|
|
|
<script setup lang="tsx">
|
2024-06-21 04:09:09 +02:00
|
|
|
import Public from "~/components/timelines/public.vue";
|
|
|
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
2024-12-07 22:17:22 +01:00
|
|
|
import * as m from "~/paraglide/messages.js";
|
2024-06-21 04:09:09 +02:00
|
|
|
|
2024-12-07 11:21:13 +01:00
|
|
|
useHead({
|
2024-12-26 14:34:59 +01:00
|
|
|
title: m.lost_trick_dog_grace(),
|
2024-12-07 11:21:13 +01:00
|
|
|
});
|
|
|
|
|
|
2024-04-26 07:54:02 +02:00
|
|
|
definePageMeta({
|
|
|
|
|
layout: "app",
|
2024-04-22 09:38:51 +02:00
|
|
|
});
|
2024-12-26 14:34:59 +01:00
|
|
|
</script>
|