chore: config project

This commit is contained in:
EsioFreitas
2022-10-24 15:33:24 -03:00
commit 12f599d31e
32 changed files with 11277 additions and 0 deletions

11
src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import "./assets/main.css";
const app = createApp(App);
app.use(router);
app.mount("#app");