We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 025501d commit 28a3c4aCopy full SHA for 28a3c4a
example/main.js
@@ -17,9 +17,9 @@ const router = createRouter({
17
routes
18
});
19
20
-const app = createApp(App);
21
-app.use(store);
22
-app.use(router);
23
-app.use(ElementPlus);
24
-app.component("rawDisplayer", rawDisplayer);
+const app = createApp(App)
+ .use(store)
+ .use(router)
+ .use(ElementPlus)
+ .component("rawDisplayer", rawDisplayer);
25
router.isReady().then(() => app.mount("#app"));
0 commit comments