mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
17 lines
421 B
Vue
17 lines
421 B
Vue
<template>
|
|
<ClientOnly>
|
|
<div v-if="note" class="max-w-2xl mx-auto md:py-20 md:px-10">
|
|
<SocialElementsNotesNote :note="note" />
|
|
</div>
|
|
</ClientOnly>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useRoute } from "vue-router";
|
|
|
|
const route = useRoute();
|
|
const client = await useMegalodon();
|
|
const uuid = (route.params.uuid as string);
|
|
|
|
const note = await useNote(client, uuid);
|
|
</script> |