refactor:use_pinia

This commit is contained in:
dichgrem
2025-12-01 11:16:39 +08:00
parent d6278e4451
commit f734593ff6
8 changed files with 329 additions and 144 deletions

View File

@@ -1,5 +1,6 @@
import { createApp } from "vue";
import { createPinia } from "pinia";
import App from "./App.vue";
import "./assets/global.css";
createApp(App).mount("#app");
createApp(App).use(createPinia()).mount("#app");