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