mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38: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>
|
<template>
|
||||||
<ClientOnly>
|
<ClientOnly>
|
||||||
<div v-if="note" class="max-w-2xl mx-auto md:py-20 md:px-10">
|
<SocialElementsNotesNote v-if="note" :note="note" />
|
||||||
<SocialElementsNotesNote :note="note" />
|
|
||||||
</div>
|
|
||||||
</ClientOnly>
|
</ClientOnly>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useRoute } from "vue-router";
|
definePageMeta({
|
||||||
|
layout: "app",
|
||||||
|
})
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const client = useMegalodon();
|
const client = useMegalodon();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue