https://github.com/mcwenzai/admin-vue
电商管理后台,使用vue+elementUI+node.js代理
https://github.com/mcwenzai/admin-vue
element-ui javascript nodejs scss vue webpack
Last synced: 3 months ago
JSON representation
电商管理后台,使用vue+elementUI+node.js代理
- Host: GitHub
- URL: https://github.com/mcwenzai/admin-vue
- Owner: mcwenzai
- License: apache-2.0
- Created: 2021-07-23T07:18:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-20T15:08:09.000Z (about 2 years ago)
- Last Synced: 2025-02-09T20:26:40.111Z (over 1 year ago)
- Topics: element-ui, javascript, nodejs, scss, vue, webpack
- Language: Vue
- Homepage:
- Size: 1.14 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
联系QQ: 1002821824
# admin-vue
电商管理后台,使用vue+elementUI+node.js代理
## 开发
```bash
# 克隆项目
内网环境下在GitLab中导入
# 进入项目目录
cd pweb-sht
# 安装依赖
npm install / yarn install
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org
# 启动服务
npm run dev / yarn serve
```
浏览器访问 http://localhost:80
## 发布
```bash
# 构建测试环境
npm run build:stage
# 构建生产环境
npm run build:prod
```