This commit is contained in:
chillwafflez 2024-03-08 01:04:57 -08:00
commit 850623e02d
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import { createApp } from "vue";
import "./styles.css";
import App from "./App.vue";
import router from "./router";
createApp(App).mount("#app");
createApp(App).use(router).mount("#app");