feat: add vue app entry point
This commit is contained in:
parent
c8509e6289
commit
020f7c1160
2 changed files with 46 additions and 0 deletions
12
src/main.ts
Normal file
12
src/main.ts
Normal 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");
|
Loading…
Add table
Add a link
Reference in a new issue