Bez popisu

invalid w aaf2fde3cf antdv升级到4.x版本 (#3006) před 1 rokem
.github 247665513a fix: ci před 1 rokem
.husky ba2415c3b4 chore: Extract lint config před 1 rokem
.vscode d25df8321e chore: windcss -> unocss před 1 rokem
apps c6e135195a 修复合并代码导致的冲突 (#2905) před 1 rokem
internal a2a78f40da Feat/scott man (#2970) před 1 rokem
mock 1262e13067 升级最新依赖 并修复eslint报错 (#2896) před 1 rokem
packages 86d5752ed7 perf: useRefs函数接收泛型类型 (#2952) před 1 rokem
public 5e99463cd0 perf: Refactor vite configuration před 1 rokem
src aaf2fde3cf antdv升级到4.x版本 (#3006) před 1 rokem
types 8e5a6b7ce5 perf: 修复部分 eslint 错误 před 1 rokem
.browserslistrc 5e4be0adbc chore: update config před 1 rokem
.commitlintrc.js dc39567a14 chore: remove @vitejs/plugin-legacy vite-plugin-imagemin před 1 rokem
.dockerignore c659c14c5a Docker dynamic publish support. (#2903) před 1 rokem
.editorconfig ee5fb223b6 chore: update readme.md před 4 roky
.env aedb8e53aa perf: 优化env字段 před 1 rokem
.env.analyze 5e99463cd0 perf: Refactor vite configuration před 1 rokem
.env.development 279977b817 feat: 逐步抽离部分包到packages před 1 rokem
.env.docker c659c14c5a Docker dynamic publish support. (#2903) před 1 rokem
.env.production 5e99463cd0 perf: Refactor vite configuration před 1 rokem
.env.test 5e99463cd0 perf: Refactor vite configuration před 1 rokem
.eslintignore 07c18d602e chore: add some notes před 4 roky
.eslintrc.js ba2415c3b4 chore: Extract lint config před 1 rokem
.gitattributes 0ab2a541cb build: git config (#2474) před 2 roky
.gitignore ba2415c3b4 chore: Extract lint config před 1 rokem
.gitpod.yml c2b207dd51 fix: Fix stylelint does not support html files před 3 roky
.npmrc ba2415c3b4 chore: Extract lint config před 1 rokem
.prettierignore 1262e13067 升级最新依赖 并修复eslint报错 (#2896) před 1 rokem
.prettierrc.js 5e4be0adbc chore: update config před 1 rokem
.stylelintignore ba2415c3b4 chore: Extract lint config před 1 rokem
.stylelintrc.js ba2415c3b4 chore: Extract lint config před 1 rokem
CHANGELOG.en_US.md 642d48870c chore: release 2.8.0 před 3 roky
CHANGELOG.md 74b0dfd54f chore: update pkg před 3 roky
CHANGELOG.zh_CN.md 642d48870c chore: release 2.8.0 před 3 roky
CNAME 476b2b8acc chore: update CNAME před 2 roky
Dockerfile c659c14c5a Docker dynamic publish support. (#2903) před 1 rokem
LICENSE 2f6253cfb6 initial commit před 4 roky
README.md 1262e13067 升级最新依赖 并修复eslint报错 (#2896) před 1 rokem
README.zh-CN.md 1262e13067 升级最新依赖 并修复eslint报错 (#2896) před 1 rokem
index.html 5e99463cd0 perf: Refactor vite configuration před 1 rokem
nginx.conf 248f9d5e81 chore: format nginx.conf (#2971) před 1 rokem
package.json aaf2fde3cf antdv升级到4.x版本 (#3006) před 1 rokem
pnpm-lock.yaml aaf2fde3cf antdv升级到4.x版本 (#3006) před 1 rokem
pnpm-workspace.yaml 5e99463cd0 perf: Refactor vite configuration před 1 rokem
tsconfig.json 44f2b1c644 fix: ts error (#2955) před 1 rokem
turbo.json 5e4be0adbc chore: update config před 1 rokem
vite.config.ts feadf64ee3 fix: Icon加载问题 před 1 rokem

README.md

VbenAdmin Logo

[![license](https://img.shields.io/github/license/anncwb/vue-vben-admin.svg)](LICENSE)

Vue vben admin

English | 中文

Introduction

Vue Vben Admin is a free and open source middle and back-end template. Using the latest vue3, vite4, 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.

Feature

  • State of The Art Development:Use front-end front-end technology development such as Vue3/vite2
  • TypeScript: Application-level JavaScript language
  • Theming: Configurable themes
  • International:Built-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

Preview

Test account: vben/123456

VbenAdmin Logo VbenAdmin Logo VbenAdmin Logo

Use Gitpod

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

Open in Gitpod

Documentation

Document

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
  • Ant-Design-Vue - ui basic use
  • Mock.js - mockjs basic syntax

Install and use

  • Get the project code
git clone https://github.com/anncwb/vue-vben-admin.git
  • Installation dependencies
cd vue-vben-admin

pnpm install

  • run
pnpm serve
  • build
pnpm build
  • docker

The dockerFile is located in the project root directory and supports differential deployment

build image

docker build -t vue-vben-admin .

Environment variables are dynamically used to achieve differentiated container deployment. Different VG_BASE_URL environment variables point to different back-end service addresses. In the following example, http://localhost:3333 is used as the back-end service address and the container is mapped to port 6666

docker run --name vue-vben-admin -d -p 6666:80  -e VG_BASE_URL=http://localhost:3333 vue-vben-admin

Then you can navigate http://localhost:6666

Change Log

CHANGELOG

Project

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

Related warehouse

If these plugins are helpful to you, you can give a star support

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

@Vben

Donate

If you think this project is helpful to you, you can help the author buy a cup of coffee to show your support!

donate

Paypal Me

Discord

License

MIT © Vben-2020