Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Sep 11, 2023
1 parent 799ff85 commit 4d2277e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { createApp, h } from "vue";
import pinia from "@/plugins/pinia";
import router from "@/plugins/router";
import vuetify from "@/plugins/vuetify";

import App from "@/app/App.vue";

import DevToolLoadingStateMenu from "@/components/utils/DevToolLoadingStateMenu.vue";

const app = createApp({
render: () => h(App),
});
app.component("DevToolLoadingStateMenu", DevToolLoadingStateMenu);
app.use(pinia);
app.use(router);
app.use(vuetify);
app.mount("#app");
createApp({ render: () => h(App) })
.component("DevToolLoadingStateMenu", DevToolLoadingStateMenu)
.use(pinia)
.use(router)
.use(vuetify)
.mount("#app");

0 comments on commit 4d2277e

Please sign in to comment.