Add nonfunctional text box to create new notes

This commit is contained in:
Joscha 2025-02-06 02:55:33 +01:00
parent 6c785ce566
commit 8453f6ee53
4 changed files with 96 additions and 7 deletions

View file

@ -10,7 +10,12 @@ const ui = useUiStore();
<div class="flex h-screen touch-pan-x touch-pan-y flex-col">
<CNavbar />
<div class="h-full overflow-auto p-1">
<CNote :noteId="ui.anchor" :path="[]" :focusPath="ui.focusPath" />
<CNote
v-if="ui.anchor"
:noteId="ui.anchor"
:path="[]"
:focusPath="ui.focusPath"
/>
</div>
</div>
</template>