https://github.com/andywang425/vue-edu-management-sys
教务管理系统,前端部分
https://github.com/andywang425/vue-edu-management-sys
element-plus vue3
Last synced: about 2 months ago
JSON representation
教务管理系统,前端部分
- Host: GitHub
- URL: https://github.com/andywang425/vue-edu-management-sys
- Owner: andywang425
- License: mit
- Created: 2023-06-23T09:19:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T11:31:54.000Z (about 2 years ago)
- Last Synced: 2025-01-26T15:47:19.329Z (over 1 year ago)
- Topics: element-plus, vue3
- Language: Vue
- Homepage:
- Size: 1.2 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 教务管理系统
该仓库是教务管理系统的前端部分,使用 Vue3 开发。后端请移步[educational-management-system](https://github.com/andywang425/educational-management-system)。
## 环境要求
- Node >= v18.0.0
## 开始
1. (推荐)Clone 并安装后端部分,然后使用 git 的`submodule`命令来获取前端部分。具体方式请移步[educational-management-system](https://github.com/andywang425/educational-management-system)。
你可以直接 Clone 本项目:
```sh
git clone https://github.com/andywang425/vue-edu-management-sys.git
```
2. 安装依赖。
```sh
cd vue-edu-management-sys
npm install
```
3. 运行。适合在开发环境中使用。
```sh
npm run dev
```
4. (可选)编译。如果你运行了后端,那么编译得到资源文件后直接访问后端的网址即可。适合在生产环境中使用。
```sh
npm run build
```
## 鸣谢
- [vue-manage-system](https://github.com/lin-xin/vue-manage-system)