feat: 初始化Vue项目并添加核心功能模块

添加了Vue3项目基础结构,包括路由、状态管理和API配置
实现了销售管理系统的核心功能模块,包括业绩看板、团队管理和客户分析
集成了Element Plus UI组件库和ECharts数据可视化
添加了全局样式和响应式布局支持
This commit is contained in:
2025-08-06 20:20:35 +08:00
commit 9af92a7975
66 changed files with 29082 additions and 0 deletions

15
my-vue-app/src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup>
</script>
<template>
<div class="app-wrapper">
<router-view />
</div>
</template>
<style lang="scss" scoped>
.app-wrapper {
min-height: 100vh;
}
</style>