# vue-cms
**Repository Path**: seiwhale/vue-cms
## Basic Information
- **Project Name**: vue-cms
- **Description**: VueCola 是一个美观的后台管理系统模板。主要使用了 vue 框架与 element-ui 组件库开发。VueCola 在后台集成方面没有过于复杂,只包含了最基础和最常用的功能。也易移除模块,当做基础模板进行开发。
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2019-08-06
- **Last Updated**: 2021-10-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
说明文档
VueCola 是一个美观的后台管理系统模板,参照简称 [Eden](https://Sakuyakun.github.io/eden-docs)(伊甸园)。主要使用了 vue 框架与 element-ui 组件库开发。VueCola 在后台集成方面没有过于复杂,只包含了最基础和最常用的功能。也易移除模块,当做基础模板进行开发。登陆页参考 vue-manager。





VueCola拥有:
- [x] 舒适配色与布局
- [x] 权限控制
- [x] 动态路由
- [x] MOCK 数据
- [x] 登录登出
- [x] 界面锁定
- [x] 伸缩侧边栏
- [x] 自适应布局
- [x] 页面标签控制
- [x] 国际化多语言
- [x] 个人中心
还有更多 ...
## 目录结构
```
├── LICENSE
├── README.md
├── package-lock.json
├── package.json
├── public
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── App.vue
│ ├── api 请求接口
│ ├── assets 静态资源
│ ├── components 组件
│ ├── lang 国际化
│ ├── main.js 入口文件
│ ├── router 路由
│ ├── store Store
│ ├── svg svg 存放目录
│ ├── utils 辅助工具方法
│ └── views 页面
└── .babelrc babel 配置文件
```
## 启动
执行 serve 脚本将自动启动 http://localhost:8080
```
# install dependency
npm install
# develop
npm run serve
# build for production environment
npm run build
# lint
npm run lint
```