fixed issue #10

This commit is contained in:
Steven C 2024-03-06 21:59:18 -08:00
parent 138119ed0a
commit 31af224028
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");