Go to file
2023-06-15 00:50:50 +08:00
.github workflow: update 2023-06-15 00:50:50 +08:00
.husky chore: use pnpm shell-emulator instead of cross-env 2022-09-07 21:59:03 +08:00
.vscode feat: 添加vscode-docker插件 2023-06-05 22:54:59 +08:00
build refactor: 使用vueuseuseResizeObserver函数替换v-resize自定义指令,从测试后的表现来看,性能会更好 2023-06-09 17:27:05 +08:00
locales feat: 添加防抖、截流、复制自定义指令使用示例 2023-06-12 21:11:31 +08:00
mock chore: update 2023-06-14 11:08:47 +08:00
public release: update 4.4.0 2023-06-14 10:52:19 +08:00
src feat: 路由meta添加activePath可将某个菜单激活,主要用于通过queryparams传参的路由 2023-06-13 22:18:23 +08:00
types feat: 路由meta添加activePath可将某个菜单激活,主要用于通过queryparams传参的路由 2023-06-13 22:18:23 +08:00
.dockerignore docs: 添加docker支持 2023-05-31 18:18:27 +08:00
.editorconfig chore: add eslint config 2021-07-06 01:12:20 +08:00
.env feat: 可配置首页菜单显示与隐藏 (#539) 2023-05-05 22:55:12 +08:00
.env.development perf: 优化环境变量注释 2022-11-17 15:44:11 +08:00
.env.production chore: 删除 @vitejs/plugin-legacyvue3 无法通过任何工具使其支持ie 2022-11-17 22:11:13 +08:00
.env.staging perf: 从 .env.staging 文件移除多余的 NODE_ENV 配置 2023-05-23 14:39:36 +08:00
.eslintignore chore: update dependencies 2022-11-11 03:36:18 +08:00
.eslintrc.js feat: use unplugin-vue-define-options add setup name 2022-05-21 12:29:54 +08:00
.gitignore types: 添加完整路由配置表类型声明 2022-08-19 15:03:52 +08:00
.gitpod.yml chore: update 2022-08-15 11:59:27 +08:00
.markdownlint.json docs: update README.md 2021-10-24 14:02:24 +08:00
.npmrc chore: use pnpm shell-emulator instead of cross-env 2022-09-07 21:59:03 +08:00
.prettierrc.js chore: update eslint@8.8.0 2022-02-07 15:59:04 +08:00
.stylelintignore perf: 使用pnpm lint格式化代码,适配最新版的stylelint规则 2023-05-04 13:49:30 +08:00
CHANGELOG.en_US.md release: update 4.4.0 2023-06-14 10:52:19 +08:00
CHANGELOG.md release: update 4.4.0 2023-06-14 10:52:19 +08:00
CHANGELOG.zh_CN.md release: update 4.4.0 2023-06-14 10:52:19 +08:00
commitlint.config.js chore: all packages update latest version 2021-09-09 10:51:29 +08:00
Dockerfile docs: 添加docker支持 2023-05-31 18:18:27 +08:00
index.html chore: 适配@keyframes默认的命名规则 2023-05-04 13:51:24 +08:00
LICENSE docs: update 2023-05-01 12:42:01 +08:00
package.json release: update 4.4.0 2023-06-14 10:52:19 +08:00
pnpm-lock.yaml chore(deps): update 2023-06-13 22:59:34 +08:00
postcss.config.js perf: 更新stylelint以及相关配置至最新,强化样式校验 2023-05-04 13:28:52 +08:00
README.en-US.md docs: 添加docker支持 2023-05-31 18:18:27 +08:00
README.md docs: 添加docker支持 2023-05-31 18:18:27 +08:00
stylelint.config.js chore: 适配@keyframes默认的命名规则 2023-05-04 13:51:24 +08:00
tailwind.config.js feat: 优化 PureTableBar 组件,添加列展示功能 2023-05-09 14:33:19 +08:00
tsconfig.json chore: eslint相关库以及typescript更新至最新版 2023-06-04 21:54:05 +08:00
vite.config.ts perf: 将本地图标全部按需引入,首屏加载减少 61 个图标资源,首屏加载再次变快 (#389) 2022-11-30 12:39:12 +08:00

vue-pure-admin

GitHub license GitHub stars GitHub forks

English | 中文

Introduction

vue-pure-admin is an open source free and out-of-the-box middle and background management system template. Developed using the latest mainstream technologies such as Vue3, Vite, Element-Plus, TypeScript, Pinia, Tailwindcss

Thin version (offering non-internationalized and internationalized versions)

The simplified version is based on the shelf extracted from vue-pure-admin, which contains main functions and is more suitable for actual project development. The packaged size is introduced globally element-plus is still below 2.3MB, and the full version of the code will be permanently synchronized. After enabling brotli compression and cdn to replace the local library mode, the package size is less than 350kb

Supporting Video

Docs

Tauri

Electron

Preview

PureAdmin Logo

  • DarkMode

PureAdmin Logo

  • Mobile

PureAdmin Logo

Use Gitpod

Open the project in Gitpod (free online dev environment for GitHub) and start coding immediately.

Open in Gitpod

Install and use

  • Get the project code
git clone https://github.com/pure-admin/vue-pure-admin.git
or
git clone https://gitee.com/yiming_chang/vue-pure-admin.git
  • Installation dependencies
cd vue-pure-admin

pnpm install

  • run
pnpm serve
  • build
pnpm build

Docker support

  1. Customize the image named vue-pure-admin (please note that there is a dot . at the end of the command below, indicating that the Dockerfile file in the current path is used, and the path can be specified according to the actual situation)
docker build -t vue-pure-admin .
  1. Port mapping and start the docker container (8080:80: indicates that the 80 port is used in the container, and the port is forwarded to the 8080 port of the host; pure-admin: indicates a custom container name; vue-pure-admin: indicates the custom image name)
docker run -dp 8080:80  --name pure-admin vue-pure-admin

After operating the above two commands, open http://localhost:8080 in the browser to preview

Of course, you can also operate the docker project through the Docker Desktop visual interface, as shown below

docker

Change Log

CHANGELOG

How to contribute

You are very welcome to joinRaise 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. submitpull request

Git Contribution submission specification

  • reference vue specification (Angular)

    • feat Add new features
    • fix Fix the problem/BUG
    • style The code style is related and does not affect the running result
    • perf Optimization/performance improvement
    • refactor Refactor
    • revert Undo edit
    • test Test related
    • docs Documentation/notes
    • chore Dependency update/scaffolding configuration modification etc.
    • workflow Workflow improvements
    • ci Continuous integration
    • types Type definition file changes
    • wip In development

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

Maintainer

xiaoxian521Ten-K

License

In principle, no fees and copyrights are charged, and it is commercially available, but if you need secondary open source (such as using this platform for secondary development and open source, the front-end code must be open source and free), please contact the author for permission! (Free, just take a record)

MIT © 2020-present, pure-admin

Star

Many thanks to the kind individuals who leave a star. Your support is much appreciated ❤️

Stargazers for vue-pure-admin

Fork

It's so cool that you study hard ❤️

Forkers repo roster for vue-pure-admin