rebuild(stage-1): establish isolated application skeleton

This commit is contained in:
leefer
2026-07-30 00:46:43 +08:00
parent 6df26a2545
commit 603e73d128
32 changed files with 2691 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createRouter, createWebHistory } from "vue-router";
import BootstrapView from "./views/BootstrapView.vue";
export default createRouter({
history: createWebHistory(),
routes: [{ path: "/", name: "bootstrap", component: BootstrapView }],
});