style remaining pages

This commit is contained in:
Michael Dausmann
2023-04-23 11:23:48 +10:00
parent b98c9a7bfb
commit a1b8d758f9
5 changed files with 55 additions and 28 deletions

View File

@@ -4,10 +4,9 @@ const { $client } = useNuxtApp();
const { data: note } = await $client.notes.getById.useQuery({note_id: +route.params.note_id});
</script>
<template>
<div>
<div class="prose lg:prose-xl m-5">
<h3>Note Detail {{ route.params.note_id }}</h3>
<pre>{{ note?.note.note_text }}</pre>
<div class="prose lg:prose-xl m-5">{{ note?.note.note_text }}</div>
<NuxtLink to="/notes/1">Back to Note 1 via an internal link (should not reload page)</NuxtLink>
</div>
</template>