feat: setup unplugin-vue-router, fixed eslnt config, SmartLink for type-safe internal/external links

This commit is contained in:
Benjamin Singleton 2026-02-12 01:18:14 -06:00
parent 3c0e46c9ab
commit 60ce6d75f7
15 changed files with 435 additions and 311 deletions

View file

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