# xj-manage-vue2
**Repository Path**: wslxm/xj-manage-vue2
## Basic Information
- **Project Name**: xj-manage-vue2
- **Description**: xijia-plus 管理端, 基于vue2 开发
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: 2.x
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 3
- **Forks**: 2
- **Created**: 2023-08-25
- **Last Updated**: 2025-06-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
基于 springboot2 + vue 前后端分离的快速开发脚手架
## 文档地址
- 文档 (及时更新): [http://xijia.plus/](http://xijia.plus/)
- 备份 (定期更新): [http://wslxm.gitee.io/xijia-plus](http://wslxm.gitee.io/xijia-plus)
## 相关地址
- xijia-plus 服务端: [https://gitee.com/wslxm/xijia-plus](https://gitee.com/wslxm/xijia-plus)
- xijia-plus 管理端 vue2 版: [https://gitee.com/wslxm/xj-manage-vue2](https://gitee.com/wslxm/xj-manage-vue2)
- xijia-plus 管理端 vue3 版: [https://gitee.com/wslxm/xj-manage-vue3](https://gitee.com/wslxm/xj-manage-vue3)
- xijia-plus 用户端 门户网站基础架构: [https://gitee.com/wslxm/xj-client](https://gitee.com/wslxm/xj-client)
- xijia-plus 用户端 APP 基础架构: [https://gitee.com/wslxm/xijia-plus-app](https://gitee.com/wslxm/xijia-plus-app)
- 基于 xijia-plus 的开源文档项目: [https://gitee.com/wslxm/xj-docs](https://gitee.com/wslxm/xj-docs)
## 开发
xj-manage-vue2 原为 xijia-plus 中的子项目, 先移出来进行独立管理 (2023/08/25)
## 安装依赖(当前node版本 node-v14.18.2)
```shell
npm install
或
npm install --registry=https://registry.npm.taobao.org
```
## 启动服务
```shell
npm run serve
```
## 更多
### node.js 14 +版本兼容
在 node.js 14 +版本后,无法直接启动服务, 可在 package.json 中的 scripts 下修改 serve 和 build 如下所示
```base
"scripts": {
"serve": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
}
```