Render notes from store
This commit is contained in:
parent
6fb900fe4b
commit
bb665d3b7d
6 changed files with 114 additions and 21 deletions
10
gdn-app/src/stores/ui.ts
Normal file
10
gdn-app/src/stores/ui.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
export const useUiStore = defineStore("ui", () => {
|
||||
const anchor = ref<string>();
|
||||
|
||||
return {
|
||||
anchor,
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue