Joyboo
2022-04-30 d09e998ae78d2fbe3d0537c6fca932a2ac484629
提交 | 用户 | age
ee5fb2 1 <div align="center"> <a href="https://github.com/anncwb/vue-vben-admin"> <img alt="VbenAdmin Logo" width="200" height="200" src="https://anncwb.github.io/anncwb/images/logo.png"> </a> <br> <br>
351f60 2
ee5fb2 3 [![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE)
351f60 4
ee5fb2 5 <h1>Vue vben admin</h1>
V 6 </div>
351f60 7
ee5fb2 8 **English** | [中文](./README.zh-CN.md)
351f60 9
025ee9 10 ## Introduction
351f60 11
ee5fb2 12 Vue Vben Admin is a free and open source middle and back-end template. Using the latest `vue3`, `vite2`, `TypeScript` and other mainstream technology development, the out-of-the-box middle and back-end front-end solutions can also be used for learning reference.
afbcf0 13
ee5fb2 14 ## Feature
afbcf0 15
ee5fb2 16 - **State of The Art Development**:Use front-end front-end technology development such as Vue3/vite2
V 17 - **TypeScript**: Application-level JavaScript language
18 - **Theming**: Configurable themes
19 - **International**:Built-in complete internationalization program
20 - **Mock Server** Built-in mock data scheme
21 - **Authority** Built-in complete dynamic routing permission generation scheme.
22 - **Component** Multiple commonly used components are encapsulated twice
afbcf0 23
e09760 24 ## Preview
8f4d51 25
ee5fb2 26 - [vue-vben-admin](https://vvbin.cn/next/) - Full version Chinese site
V 27 - [vue-vben-admin-gh-pages](https://anncwb.github.io/vue-vben-admin/) - Full version of the github site
28 - [vben-admin-thin-next](https://vvbin.cn/thin/next/) - Simplified Chinese site
29 - [vben-admin-thin-gh-pages](https://anncwb.github.io/vben-admin-thin-next/) -Simplified github site
8f4d51 30
ee5fb2 31 Test account: vben/123456
03b602 32
afbcf0 33 <p align="center">
ee5fb2 34     <img alt="VbenAdmin Logo" width="100%" src="https://anncwb.github.io/anncwb/images/preview1.png">
V 35     <img alt="VbenAdmin Logo" width="100%" src="https://anncwb.github.io/anncwb/images/preview2.png">
36     <img alt="VbenAdmin Logo" width="100%" src="https://anncwb.github.io/anncwb/images/preview3.png">
afbcf0 37 </p>
ee5fb2 38
V 39 ### Use Gitpod
40
41 Open the project in Gitpod (free online dev environment for GitHub) and start coding immediately.
42
43 [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/anncwb/vue-vben-admin)
afbcf0 44
025ee9 45 ## Documentation
afbcf0 46
ee5fb2 47 [Document](https://vvbin.cn/doc-next/)
afbcf0 48
ee5fb2 49 ## Preparation
afbcf0 50
ee5fb2 51 - [node](http://nodejs.org/) and [git](https://git-scm.com/) - Project development environment
V 52 - [Vite](https://vitejs.dev/) - Familiar with vite features
53 - [Vue3](https://v3.vuejs.org/) - Familiar with Vue basic syntax
54 - [TypeScript](https://www.typescriptlang.org/) - Familiar with the basic syntax of `TypeScript`
55 - [Es6+](http://es6.ruanyifeng.com/) - Familiar with es6 basic syntax
56 - [Vue-Router-Next](https://next.router.vuejs.org/) - Familiar with the basic use of vue-router
57 - [Ant-Design-Vue](https://2x.antdv.com/docs/vue/introduce-cn/) - ui basic use
58 - [Mock.js](https://github.com/nuysoft/Mock) - mockjs basic syntax
afbcf0 59
ee5fb2 60 ## Install and use
afbcf0 61
ee5fb2 62 - Get the project code
351f60 63
025ee9 64 ```bash
ee5fb2 65 git clone https://github.com/anncwb/vue-vben-admin.git
V 66 ```
351f60 67
ee5fb2 68 - Installation dependencies
351f60 69
ee5fb2 70 ```bash
V 71 cd vue-vben-admin
351f60 72
999965 73 pnpm install
351f60 74
75 ```
76
ee5fb2 77 - run
351f60 78
79 ```bash
999965 80 pnpm serve
351f60 81 ```
82
ee5fb2 83 - build
351f60 84
85 ```bash
999965 86 pnpm build
351f60 87 ```
88
ee5fb2 89 ## Change Log
351f60 90
ee5fb2 91 [CHANGELOG](./CHANGELOG.zh_CN.md)
351f60 92
ee5fb2 93 ## Project
351f60 94
ee5fb2 95 - [vue-vben-admin](https://github.com/anncwb/vue-vben-admin) - full version
V 96 - [vue-vben-admin-thin-next](https://github.com/anncwb/vben-admin-thin-next) - Simplified version
351f60 97
ee5fb2 98 ## How to contribute
351f60 99
ee5fb2 100 You are very welcome to join![Raise an issue](https://github.com/anncwb/vue-vben-admin/issues/new/choose) Or submit a Pull Request。
351f60 101
ee5fb2 102 **Pull Request:**
351f60 103
025ee9 104 1. Fork code!
V 105 2. Create your own branch: `git checkout -b feat/xxxx`
106 3. Submit your changes: `git commit -am 'feat(function): add xxxxx'`
107 4. Push your branch: `git push origin feat/xxxx`
108 5. submit`pull request`
351f60 109
ee5fb2 110 ## Git Contribution submission specification
351f60 111
ee5fb2 112 - reference [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) specification ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
afbcf0 113
ee5fb2 114   - `feat` Add new features
V 115   - `fix` Fix the problem/BUG
116   - `style` The code style is related and does not affect the running result
117   - `perf` Optimization/performance improvement
118   - `refactor` Refactor
119   - `revert` Undo edit
120   - `test` Test related
121   - `docs` Documentation/notes
122   - `chore` Dependency update/scaffolding configuration modification etc.
123   - `workflow` Workflow improvements
124   - `ci` Continuous integration
125   - `types` Type definition file changes
126   - `wip` In development
afbcf0 127
ee5fb2 128 ## Related warehouse
faf3f4 129
ee5fb2 130 If these plugins are helpful to you, you can give a star support
V 131
132 - [vite-plugin-mock](https://github.com/anncwb/vite-plugin-mock) - Used for local and development environment data mock
133 - [vite-plugin-html](https://github.com/anncwb/vite-plugin-html) - Used for html template conversion and compression
134 - [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) - Used for component library style introduction on demand
24a3f9 135 - [vite-plugin-theme](https://github.com/anncwb/vite-plugin-theme) - Used for online switching of theme colors and other color-related configurations
V 136 - [vite-plugin-imagemin](https://github.com/anncwb/vite-plugin-imagemin) - Used to pack compressed image resources
ee5fb2 137 - [vite-plugin-compression](https://github.com/anncwb/vite-plugin-compression) - Used to pack input .gz|.brotil files
2c6aa8 138 - [vite-plugin-svg-icons](https://github.com/anncwb/vite-plugin-svg-icons) - Used to quickly generate svg sprite
351f60 139
025ee9 140 ## Browser support
70fba7 141
ee5fb2 142 The `Chrome 80+` browser is recommended for local development
70fba7 143
ee5fb2 144 Support modern browsers, not IE
70fba7 145
8a1bfd 146 | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
V 147 | :-: | :-: | :-: | :-: | :-: |
148 | not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
149
ee5fb2 150 ## Maintainer
70fba7 151
ce93e4 152 [@Vben](https://github.com/anncwb)
173d40 153
ee5fb2 154 ## Donate
173d40 155
ee5fb2 156 If you think this project is helpful to you, you can help the author buy a cup of coffee to show your support!
V 157
158 ![donate](https://anncwb.github.io/anncwb/images/sponsor.png)
159
ce93e4 160 <a style="display: block;width: 100px;height: 50px;line-height: 50px; color: #fff;text-align: center; background: #408aed;border-radius: 4px;" href="https://www.paypal.com/paypalme/cvvben">Paypal Me</a>
ee5fb2 161
V 162 ## Discord
163
164 - [github discussions](https://github.com/anncwb/vue-vben-admin/discussions)
165 - [Discord](https://discord.gg/8GuAdwDhj6)
166
167 ## License
168
169 [MIT © Vben-2020](./LICENSE)