Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lqsong/electron-admin-element-vue
Electron Vue3.x Element-UI Admin
https://github.com/lqsong/electron-admin-element-vue
axios electron electron-app electron-vue element-plus element-ui mock typescript vue vue3 vuex
Last synced: 7 days ago
JSON representation
Electron Vue3.x Element-UI Admin
- Host: GitHub
- URL: https://github.com/lqsong/electron-admin-element-vue
- Owner: lqsong
- License: mit
- Created: 2021-01-12T09:07:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-07T00:47:02.000Z (about 2 years ago)
- Last Synced: 2023-03-04T06:36:17.622Z (over 1 year ago)
- Topics: axios, electron, electron-app, electron-vue, element-plus, element-ui, mock, typescript, vue, vue3, vuex
- Language: Vue
- Homepage: http://admin-element-vue.liqingsong.cc
- Size: 2.75 MB
- Stars: 43
- Watchers: 2
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-admin-element-vue
> electron-admin-element-vue([GitHub](https://github.com/lqsong/electron-admin-element-vue)、[Gitee](https://gitee.com/lqsong/electron-admin-element-vue)) 是在 `admin-element-vue`([GitHub](https://github.com/lqsong/admin-element-vue)、[Gitee](https://gitee.com/lqsong/admin-element-vue))的基础上结合 [vue-cli-plugin-electron-builder](https://github.com/nklayman/vue-cli-plugin-electron-builder) 构建的桌面Admin。
## Demo
**注意:Demo 用的是在线mock服务,不稳定,若登录不了pull到本地可直接运行查看demo**
> 下载自己需要的版本进行安装
|下载链接|
:-------------------------:
| electron-admin-element-vue-v2.0.0-win32-ia32-setup.exe [Github](https://github.com/lqsong/electron-admin-element-vue/releases) [Gitee](https://gitee.com/lqsong/electron-admin-element-vue/releases) |
| electron-admin-element-vue-v2.0.0-win32-x64-setup.exe [Github](https://github.com/lqsong/electron-admin-element-vue/releases) [Gitee](https://gitee.com/lqsong/electron-admin-element-vue/releases) |
| electron-admin-element-vue-v2.0.0-mac.dmg [Github](https://github.com/lqsong/electron-admin-element-vue/releases) [Gitee](https://gitee.com/lqsong/electron-admin-element-vue/releases) ||图片预览|
:-------------------------:
| ![Home](https://gitee.com/lqsong/public/raw/master/admin-element-vue-typescript/home.png) |
| ![Home](https://gitee.com/lqsong/public/raw/master/admin-element-vue-typescript/home2.png) |## 使用文档
- [admin-element-vue](http://admin-element-vue.liqingsong.cc/tsv2/guide/senior/electron.html)
- [vue-cli-plugin-electron-builder](https://nklayman.github.io/vue-cli-plugin-electron-builder)
- [electron-builder](https://www.electron.build)## 后台前端解决方案列表
- admin-element-vue([GitHub](https://github.com/lqsong/admin-element-vue)、[Gitee](https://gitee.com/lqsong/admin-element-vue))
- admin-antd-vue([GitHub](https://github.com/lqsong/admin-antd-vue)、[Gitee](https://gitee.com/lqsong/admin-antd-vue))
- admin-antd-react([GitHub](https://github.com/lqsong/admin-antd-react)、[Gitee](https://gitee.com/lqsong/admin-antd-react))
- electron-admin-element-vue([GitHub](https://github.com/lqsong/electron-admin-element-vue)、[Gitee](https://gitee.com/lqsong/electron-admin-element-vue))
- electron-admin-antd-vue([GitHub](https://github.com/lqsong/electron-admin-antd-vue)、[Gitee](https://gitee.com/lqsong/electron-admin-antd-vue))
- electron-admin-antd-react([GitHub](https://github.com/lqsong/electron-admin-antd-react)、[Gitee](https://gitee.com/lqsong/electron-admin-antd-react))
- admin-vue3-micro-qiankun([GitHub](https://github.com/lqsong/admin-vue3-micro-qiankun)、[Gitee](https://gitee.com/lqsong/admin-vue3-micro-qiankun))## 功能
```
- 登录 / 注销 / 注册- 权限验证
- 页面权限
- 按钮操作
- 权限配置- 全局功能
- 国际化多语言
- 动态顶级菜单(支持设置是否启用)
- 动态侧边栏(支持多级路由嵌套)
- 动态面包屑(支持自定义配置)
- Svg Sprite 图标
- Mock 数据- 综合实例
- 引导页
- 组件示例
- 编辑器
- CKEditor
- tui-editor
- 图标
- IconSvg
- IconFont
- 页面示例
- 列表页面
- 表格列表
- 高度自适应表格
- 搜索列表
- 表单页面
- 基础表单
- 高级表单
- 详情页面
- 基础详情
- 模块详情
- 表格详情
- 权限验证
```## 自定义配置
### **(建议)** 本地或开发模式下,不要直接修改 '.env.development'
复制 '.env.development' 重命名为 ' .env.development.local' , 修改对应的参数.### **(建议)** 生产模式下,不要直接修改 '.env.production'
复制 '.env.production' 重命名为 ' .env.production.local' , 修改对应的参数.## 项目设置
### 一、Install dependencies,
```bash
$ yarn
```or
```
$ npm install
```> 推荐使用 yarn , **[yarn安装与常用命令](http://liqingsong.cc/article/detail/9)** 。
### 二、Compiles and hot-reloads for development
```bash
$ yarn electron:serve
```or
```
$ npm run electron:serve
```### 三、Compiles and minifies for production
```bash
$ yarn electron:build
```
or```
$ npm run electron:build
```### 四、精简 svg icon
```
$ yarn svgo
```or
```
$ npm run svgo
```### 五、Run your unit tests
```
yarn test:unit#
npm run test:unit
```### 六、Lints and fixes files
```
yarn lint#
npm run lint
```## 捐赠
如果你觉得这个项目帮助到了你,请帮助点击 Star,你也可以请作者喝咖啡表示鼓励.
**ALIPAY** | **WECHAT**
:-------------------------:|:-------------------------:
![Alipay](http://uploads.liqingsong.cc/20210430/f62d2436-8d92-407d-977f-35f1e4b891fc.png) | ![Wechat](http://uploads.liqingsong.cc/20210430/3e24efa9-8e79-4606-9bd9-8215ce1235ac.png)