feat: 搭建应用基础框架

包含应用入口、根组件、路由配置(含登录守卫)、主布局、全局样式、ECharts 插件、类型定义、常量映射表及静态资源。
This commit is contained in:
caoxiaozhu
2026-07-10 16:44:49 +08:00
parent 855308e5fa
commit 8aa67003c8
11 changed files with 1112 additions and 0 deletions

7
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,7 @@
<script setup lang="ts">
// 根组件,仅承载路由出口
</script>
<template>
<router-view />
</template>