diff --git a/src/main.ts b/src/main.ts index c33641e..5eea099 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,5 @@ import { createApp } from "vue"; import "./styles.css"; import App from "./App.vue"; -import router from "./router"; -createApp(App).use(router).mount("#app"); +createApp(App).mount("#app");