# vue-shop **Repository Path**: voyagerlemon/vue-shop ## Basic Information - **Project Name**: vue-shop - **Description**: 根据黑马程序员刘龙宾老师的vue电商后台管理系统-使用Elment UI组件进行整理 - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 3 - **Created**: 2022-04-03 - **Last Updated**: 2024-01-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 电商后台管理系统 ## 开发工具 - nodejs >= 10 - vscode(插件安装 vetur、eslint、prettier) - yarn (不能用 npm 安装依赖) ## 目录组织规范 ``` ├── public │ ├── favicon.ico │ ├── index.html ├── src │ ├── App.vue --------------------------- Root组件 │ ├── assets ---------------------------- 静态文件,一般用来放图片 │ ├── components ------------------------ 全局组件 │ ├── main-dev.js --------------------------- app 开发入口 │ ├── main-prod.js --------------------------- app 打包入口 ├── vue_api_server --------------------------- 后台数据服务器 ├── vue.config.js ├── babel.config.js ├── jsconfig.json ├── package.json ├── .prettierrc ├── .eslintrc ├── yarn.lock ``` ## Install yarn ``` npm install --global yarn ``` ## Check installation ``` yarn --version ``` ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn serve ``` ### Compiles and minifies for production ``` yarn build ``` ### Lints and fixes files ``` yarn lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/).