Render notes from store

This commit is contained in:
Joscha 2025-02-05 02:22:02 +01:00
parent 6fb900fe4b
commit bb665d3b7d
6 changed files with 114 additions and 21 deletions

10
gdn-app/src/stores/ui.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useUiStore = defineStore("ui", () => {
const anchor = ref<string>();
return {
anchor,
};
});