Move notes store to rust

This commit is contained in:
Joscha 2025-02-13 22:20:56 +01:00
parent 849400cf35
commit 75f3a84e5f
12 changed files with 617 additions and 138 deletions

View file

@ -1,5 +1,10 @@
import { createPinia } from "pinia";
import { createApp } from "vue";
import App from "./App.vue";
import { useNotesStore } from "./stores/notes";
createApp(App).use(createPinia()).mount("#app");
const app = createApp(App).use(createPinia());
await useNotesStore().initialize();
app.mount("#app");