mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
fix: 🐛 Put the Note view on the app layout
This commit is contained in:
parent
7004deafcd
commit
86e254b7e7
|
|
@ -1,13 +1,13 @@
|
|||
<template>
|
||||
<ClientOnly>
|
||||
<div v-if="note" class="max-w-2xl mx-auto md:py-20 md:px-10">
|
||||
<SocialElementsNotesNote :note="note" />
|
||||
</div>
|
||||
<SocialElementsNotesNote v-if="note" :note="note" />
|
||||
</ClientOnly>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useRoute } from "vue-router";
|
||||
definePageMeta({
|
||||
layout: "app",
|
||||
})
|
||||
|
||||
const route = useRoute();
|
||||
const client = useMegalodon();
|
||||
|
|
|
|||
Loading…
Reference in a new issue