feat: add vue app entry point

This commit is contained in:
Sebin Nyshkim 2022-09-26 17:15:02 +02:00
parent c8509e6289
commit 020f7c1160
2 changed files with 46 additions and 0 deletions

12
src/main.ts Normal file
View file

@ -0,0 +1,12 @@
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import "normalize.css";
import "@/scss/main.scss";
const app = createApp(App);
app.use(router);
app.mount("body");