Add nonfunctional text box to create new notes
This commit is contained in:
parent
6c785ce566
commit
8453f6ee53
4 changed files with 96 additions and 7 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue