Store paths of unfolded nodes in ui state

This commit is contained in:
Joscha 2025-02-07 02:14:09 +01:00
parent e62f277ee4
commit dd19497426
7 changed files with 77 additions and 51 deletions

View file

@ -11,10 +11,10 @@ const ui = useUiStore();
<CNavbar />
<div class="h-full overflow-auto p-1">
<CNote
v-if="ui.anchor"
:noteId="ui.anchor"
:path="[]"
:focusPath="ui.focusPath"
v-if="ui.anchorId"
:noteId="ui.anchorId"
:path="''"
:forceOpen="true"
/>
</div>
</div>