Няма описание

xiaoxian521 7f02418839 docs: 添加`docker`支持 преди 1 година
.github d4ee45c3ce docs: update преди 1 година
.husky 392105e820 chore: use pnpm `shell-emulator` instead of `cross-env` преди 2 години
.vscode 4e4c9b3848 chore: 更新`vscode`代码片段 преди 1 година
build 4e3d752fb6 feat: 新增`组件-瀑布流demo` преди 1 година
locales ca6459f224 feat: 瀑布流组件添加无限滚动 преди 1 година
mock 0c12cba474 chore: update преди 1 година
public ee4fb9129e release: update `4.2.0` преди 1 година
src ee73c88d36 perf: `pure-table`表格高级用法添加保留已选中的`CheckBox`选项`demo` преди 1 година
types 5f3210f69e types: 添加 `Exclusive` 类型互斥语法糖 преди 1 година
.dockerignore 7f02418839 docs: 添加`docker`支持 преди 1 година
.editorconfig e1200f2dbe chore: add eslint config преди 3 години
.env 9d0c3f305d feat: 可配置首页菜单显示与隐藏 (#539) преди 1 година
.env.development e4a87e2138 perf: 优化环境变量注释 преди 2 години
.env.production 2235d9d7a8 chore: 删除 `@vitejs/plugin-legacy`,`vue3` 无法通过任何工具使其支持`ie` преди 2 години
.env.staging b6ae64a89b perf: 从 `.env.staging` 文件移除多余的 `NODE_ENV` 配置 преди 1 година
.eslintignore df71c7f75c chore: update dependencies преди 2 години
.eslintrc.js 747e2b9c1c feat: use `unplugin-vue-define-options` add setup name преди 2 години
.gitignore 28e58e4b4e types: 添加完整路由配置表类型声明 преди 2 години
.gitpod.yml 9e8907ce21 chore: update преди 2 години
.markdownlint.json 822261c922 docs: update README.md преди 3 години
.npmrc 392105e820 chore: use pnpm `shell-emulator` instead of `cross-env` преди 2 години
.prettierrc.js 25c55c5d1d chore: update eslint@8.8.0 преди 3 години
.stylelintignore afc15ea8df perf: 使用`pnpm lint`格式化代码,适配最新版的`stylelint`规则 преди 1 година
CHANGELOG.en_US.md ee4fb9129e release: update `4.2.0` преди 1 година
CHANGELOG.md ee4fb9129e release: update `4.2.0` преди 1 година
CHANGELOG.zh_CN.md ee4fb9129e release: update `4.2.0` преди 1 година
Dockerfile 7f02418839 docs: 添加`docker`支持 преди 1 година
LICENSE b1e0968a9b docs: update преди 1 година
README.en-US.md 7f02418839 docs: 添加`docker`支持 преди 1 година
README.md 7f02418839 docs: 添加`docker`支持 преди 1 година
commitlint.config.js 03955f7470 chore: all packages update latest version преди 3 години
index.html 6176d9508b chore: 适配`@keyframes`默认的命名规则 преди 1 година
package.json c4ddf840b4 chore(deps): update преди 1 година
pnpm-lock.yaml c4ddf840b4 chore(deps): update преди 1 година
postcss.config.js 7713e7fb9e perf: 更新`stylelint`以及相关配置至最新,强化样式校验 преди 1 година
stylelint.config.js 6176d9508b chore: 适配`@keyframes`默认的命名规则 преди 1 година
tailwind.config.js 723cb46eaf feat: 优化 `PureTableBar` 组件,添加列展示功能 преди 1 година
tsconfig.json 86ec72f3c0 chore: 依赖更新到`vue3.3+`以及删除`unplugin-vue-define-options`插件 преди 1 година
vite.config.ts c7ab236e10 perf: 将本地图标全部按需引入,首屏加载减少 `61` 个图标资源,首屏加载再次变快 (#389) преди 2 години

README.en-US.md

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

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 .
    
  2. 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 join!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. 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

IEEdgeFirefox
 Edge
 Edge
Firefox
ChromeChrome SafariSafari 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 :heart:

Stargazers for vue-pure-admin

Fork

It's so cool that you study hard :heart:

Forkers repo roster for vue-pure-admin