Move notes store to rust
This commit is contained in:
parent
849400cf35
commit
75f3a84e5f
12 changed files with 617 additions and 138 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue