fix: 🐛 Put the Note view on the app layout

This commit is contained in:
Jesse Wierzbinski 2024-04-27 21:46:05 -10:00
parent 7004deafcd
commit 86e254b7e7
No known key found for this signature in database

View file

@ -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();