diff options
Diffstat (limited to 'master/src/main.ts')
-rw-r--r-- | master/src/main.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/master/src/main.ts b/master/src/main.ts index 3e79677..10ea69d 100644 --- a/master/src/main.ts +++ b/master/src/main.ts @@ -1,5 +1,5 @@ -import { createApp } from 'vue' -import App from './App.vue' -import router from './router' +import { createApp } from "vue"; +import App from "./App.vue"; +import router from "./router"; -createApp(App).use(router).mount('#app') +createApp(App).use(router).mount("#app"); |