# Project_1 **Repository Path**: pullcici/project_1 ## Basic Information - **Project Name**: Project_1 - **Description**: 实战项目一 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-09-20 - **Last Updated**: 2022-10-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ├─ babel.config.js ├─ jsconfig.json ├─ package.json ├─ postcss.config.js ├─ public (静态资源) │ ├─ favicon.ico │ └─ index.html ├─ src(源代码) │ ├─ App.vue │ ├─ api(请求接口) │ │ └─ login(登录接口) │ │ └─ index.js │ ├─ components(组件) │ │ ├─ category(xx) │ │ │ └─ category.vue │ │ └─ recommend(xx) │ │ └─ recommend.vue │ ├─ main.js │ ├─ pages │ │ ├─ cart(xx) │ │ │ └─ cart.vue │ │ ├─ categorys(xx) │ │ │ └─ categorys.vue │ │ ├─ index(首页页面) │ │ │ └─ index.vue │ │ ├─ login(登录页面) │ │ │ └─ login.vue │ │ └─ personal(个人模块) │ │ └─ personal.vue │ ├─ router(路由) │ │ ├─ index.js │ │ └─ routes.js (路由的routes) │ ├─ store(vuex) │ │ ├─ index.js │ │ └─ modules(vuex的模块文件夹) │ │ ├─ index.js(vuex的模块入口文件) │ │ └─ test.js (test模块) │ └─ utils │ └─ request.js(axios的二次封装文件) ├─ vue.config.js └─ yarn.lock