最近搭建了一個vue移動端的項目,使用mock模擬接口,axios封裝網絡請求,elementUI配置的按需引入組件,適合剛入門不會搭建項目的或者是懶得本身搭建項目的同窗,開箱即用,喜歡的給個小星星。html
項目地址:
https://github.com/guanxp-S/v...vue
| public //靜態資源目錄 | favicon.ico | index.html | src | api //接口目錄 | assets //靜態資源目錄 | common //共用文件目錄 | router //路由目錄 | store //vuex目錄 | utils //配置目錄 | views //頁面目錄 | App.vue //App.vue | main.ts //入口文件 | shims-tsx.d.ts //d.ts聲明文件 | shims-vue.d.ts //d.ts聲明文件 | .env.dev //環境變量文件:開發 | .env.mock //環境變量文件 | .env.production //環境變量文件 | .env.uat //環境變量文件:生產 | .gitignore //忽略文件 | babel.config.js //babel配置文件 | commitlint.config.js //commitlint配置文件 | deploy.js //將本地文件上傳遠程服務器 | package-lock.json //package-lock.json | package.json //package.json | README.md //項目說明 | tsconfig.json //typescript配置文件 | vue.config.js //vue配置文件