Go to file
Archer 9af5c99c2c
Merge pull request #546 from DavidQinqianWu/fix-error-message-on-no-prototype-builtins
fix: fix error message about "no-prototype-builtins" after run project
2024-10-15 11:01:38 +08:00
.github/workflows mod: 删除无用文件 2024-02-07 10:21:12 +08:00
.husky fix: 修复husky问题 2024-07-19 10:42:46 +08:00
.vscode fix: #451 2024-04-08 13:57:35 +08:00
mock Merge pull request #484 from lt5227/master 2024-06-05 16:29:10 +08:00
plop chore: 更新依赖 2024-06-01 17:12:17 +08:00
public style: 压缩图片尺寸 2022-07-18 10:44:10 +08:00
scripts perf: 优化使用离线图标后运行慢问题 2024-06-05 16:26:46 +08:00
src fix: fix error message about "no-prototype-builtins" after run project 2024-10-14 19:14:23 +08:00
types chore: 更新eslint 2024-07-18 16:56:42 +08:00
.browserslistrc fix: 修复css前缀无法应用问题(#482) 2024-06-04 11:13:50 +08:00
.env.base chore: 新增VITE_HIDE_GLOBAL_SETTING配置 2024-06-20 15:31:54 +08:00
.env.dev chore: 新增VITE_HIDE_GLOBAL_SETTING配置 2024-06-20 15:31:54 +08:00
.env.gitee chore: 新增VITE_HIDE_GLOBAL_SETTING配置 2024-06-20 15:31:54 +08:00
.env.pro chore: 新增VITE_HIDE_GLOBAL_SETTING配置 2024-06-20 15:31:54 +08:00
.env.test chore: 新增VITE_HIDE_GLOBAL_SETTING配置 2024-06-20 15:31:54 +08:00
.gitignore fix: less 变量命名与 css 关键字冲突 #475 2024-05-28 14:20:05 +08:00
.prettierignore types: 修复全局组件属性类型无法推导 2023-12-21 10:50:20 +08:00
.stylelintignore build: 集成基础配置 2021-12-07 16:36:16 +08:00
CHANGELOG.md chore(release): release 2.8.1 2024-06-20 15:33:15 +08:00
commitlint.config.cjs chore: 更新依赖 2024-06-01 17:12:17 +08:00
docker-compose.dev.yaml workflow(docker): add development dockerfile 2024-05-17 22:30:08 +05:00
Dockerfile.dev workflow(docker): add development dockerfile 2024-05-17 22:30:08 +05:00
eslint.config.mjs chore: 更新eslint 2024-07-18 16:56:42 +08:00
index.html build: Add vite-plugin-html plugin 2022-02-19 15:57:41 +08:00
LICENSE docs: update LICENSE 2022-03-22 13:54:45 +08:00
package.json chore: 更新eslint 2024-07-18 16:56:42 +08:00
plopfile.cjs chore: 更新依赖 2024-06-01 17:12:17 +08:00
postcss.config.cjs chore: 更新依赖 2024-06-01 17:12:17 +08:00
prettier.config.cjs chore: 更新依赖 2024-06-01 17:12:17 +08:00
README.md docs: 修改readme 2024-07-17 16:42:51 +08:00
README.zh-CN.md docs: 修改readme 2024-07-17 16:42:51 +08:00
stylelint.config.cjs chore: 更新依赖 2024-06-01 17:12:17 +08:00
tsconfig.json chore: 更新依赖 2024-01-03 14:00:33 +08:00
uno.config.ts perf: 优化使用离线图标后运行慢问题 2024-06-05 16:26:46 +08:00
vite.config.ts chore: 更新eslint 2024-07-18 16:56:42 +08:00



license repo-size last-commit stars forks release watchers

vue-element-plus-admin

English | 中文

Introduction

vue-element-plus-admin is a free and open source middle and background template based on element-plus. Developed using the latest mainstream technologies such as vue3, vite and typescript, the out of the box middle and background front-end solution can be used as the starting template of the project and learning reference. And always pay attention to the latest technological trends and update them as soon as possible.

vue-element-plus-admin is positioned as a background integration scheme, which is not suitable for secondary development as a basic template. Because it integrates many functions that you may not use, it will cause a lot of code redundancy. If your project doesn't pay attention to this problem, you can also directly carry out secondary development based on it.

If you need a basic template, please switch to the mini branch. mini simply integrates some common layout functions such as layout and dynamic menu, which is more suitable for developers to carry out secondary development.

Feature

  • State of The Art DevelopmentUse front-end front-end technology development such as Vue3/vite4
  • TypeScript: Application-level JavaScript language
  • Theming: Configurable themes
  • InternationalBuilt-in complete internationalization program
  • Mock Server Built-in mock data scheme
  • Authority Built-in complete dynamic routing permission generation scheme.
  • Component Multiple commonly used components are encapsulated twice
  • Examples Built-in rich examples

Preview

account: admin/admin

Online examples do not apply to menu filtering by default, but directly use Static routing

Documentation

Document Github

Document Gitee

Preparation

  • node and git - Project development environment
  • Vite - Familiar with vite features
  • Vue3 - Familiar with Vue basic syntax
  • TypeScript - Familiar with the basic syntax of TypeScript
  • Es6+ - Familiar with es6 basic syntax
  • Vue-Router-Next - Familiar with the basic use of vue-router
  • Element-Plus - Familiar with the basic use of element-plus
  • Mock.js - mockjs basic syntax

Install and use

  • Get the project code
git clone https://github.com/kailong321200875/vue-element-plus-admin.git
  • Installation dependencies
cd vue-element-plus-admin

pnpm install

  • run
pnpm run dev
  • build
pnpm run build:pro

Change Log

CHANGELOG

How to contribute

You can Raise an issue Or submit a Pull Request.

Pull Request:

  1. Fork code
  2. Create your own branch: git checkout -b feat/xxxx
  3. Submit your changes: git commit -am 'feat(function): add xxxxx'
  4. Push your branch: git push origin feat/xxxx
  5. submit pull request

Git Contribution submission specification

  • feat New features
  • fix Fix bugs
  • docs document
  • style Format and style (changes that do not affect code operation)
  • refactor Refactor
  • perf Optimize related, such as improving performance and experience
  • test Add test
  • build Compilation related modifications, changes to project construction or dependencies
  • ci Continuous integration modification
  • chore Changes in the construction process or auxiliary tools
  • revert Rollback to previous version
  • workflow Workflow improvement
  • mod Uncertain modification classification
  • wip Under development
  • types type

Browser support

The Chrome 80+ browser is recommended for local development

Support modern browsers, not IE

 Edge
IE
 Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
not support last 2 versions last 2 versions last 2 versions last 2 versions

Donate

If you find this project helpful, welcome sponsorship to show your support~

Paypal Me

My QR code

If you have any project cooperation or outsourcing, please scan the code to add me as a friend and leave a note of your purpose.

License

MIT