# ele-admin **Repository Path**: cysir/ele-admin ## Basic Information - **Project Name**: ele-admin - **Description**: 练手的vue项目仓库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-09 - **Last Updated**: 2023-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ele-admin ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ### 参考地址 点击这里 (http://zcy12138.tpddns.cn:8002/#/) ### 项目结构 以业务优先划分目录 ``` . ├── public # 静态资源目录 └── src # 源码目录 ├── api # 网络请求api ├── assets # 资源文件 ├── components # Vue组件目录 │   ├── common # 通用组件 │   └── layout # 布局组件 ├── module # 业务模块 │   ├── home # 首页模块 │   └── login # 登录模块 ├── router # 路由模块 ├── store # 状态管理 │   └── module # 各种子状态 └── utils # 工具类 ```