+
@@ -60,7 +75,12 @@ watchEffect(() => {
v-if="open && children.length > 0"
class="flex flex-col border-l border-neutral-300 pl-3"
>
-
+
diff --git a/gdn-app/src/stores/ui.ts b/gdn-app/src/stores/ui.ts
index 109a186..68a1cc4 100644
--- a/gdn-app/src/stores/ui.ts
+++ b/gdn-app/src/stores/ui.ts
@@ -3,8 +3,10 @@ import { ref } from "vue";
export const useUiStore = defineStore("ui", () => {
const anchor = ref
();
+ const focusPath = ref([1]);
return {
anchor,
+ focusPath,
};
});