├───public // 公共資源目錄
│ ├───icons // icon圖片存放目錄
│ │ favicon.ico // 本站favicon圖片
│ │ iconfont.css // 阿里iconfont文件
│ │ index.html // template模板
│ │ robots.txt // Robots協議
├───script // 腳本
├───src
│ ├───assets // 靜態資源文件存放目錄
│ ├───components // 布局組件及業務基礎組件
│ │ ├───layout // layout布局組件
│ │ ├───base // 通用基礎組件庫(包含element-ui二次封裝組件)
│ ├───config // config配置項
│ │ ├───stage // 路由配置文件
│ │ │ error-code.js // 與服務端約定的錯誤狀態碼
│ │ │ index.js // 前端自定義配置項
│ ├───plugins // 插件
│ ├───router // 前端路由
│ │ ├───modules // 每個業務模型的路由樹
│ │ │ home-router.js // 菜單路由
│ │ │ index.js // vue-router入口文件
│ │ │ routes.js // vue-router路由配置
│ ├───store // vuex狀態管理文件
│ ├───views // 業務組件
│ │ App.vue // vue根組件
│ │ main.js // webpack打包入口
│ babel.config.js // babel配置文件
│ .browserslistrc // 適配瀏覽器版本
│ .eslintrc.js // eslint配置文件
│ .gitignore // git上傳忽略文件