Przeglądaj źródła

perf: 页面初始化时先加载`pinia`再加载`router`,兼容更多使用场景 (#649)

hu 1 rok temu
rodzic
commit
d27c0623c5
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/main.ts

+ 1 - 1
src/main.ts

@@ -46,10 +46,10 @@ import { Auth } from "@/components/ReAuth";
 app.component("Auth", Auth);
 
 getServerConfig(app).then(async config => {
+  setupStore(app);
   app.use(router);
   await router.isReady();
   injectResponsiveStorage(app, config);
-  setupStore(app);
   app
     .use(MotionPlugin)
     .use(useI18n)