feat: 添加 Arco Design 组件库并重构应用结构,移除 HelloWorld 组件,更新路由配置

This commit is contained in:
2025-11-14 23:21:33 +08:00
parent f0dae8d508
commit e243175146
10 changed files with 97 additions and 154 deletions

8
src/routes/router.ts Normal file
View File

@@ -0,0 +1,8 @@
import { createWebHashHistory, createRouter } from "vue-router";
import HomeView from "../views/HomeView.vue";
const routes = [{ path: "/", component: HomeView }];
const router = createRouter({
history: createWebHashHistory(),
routes,
});
export default router;