Sin descripción

lxh 181b189d80 提交新版本 hace 1 año
.github 3efe662c91 ci: rename node.js.yml -> linter.yml hace 1 año
.vscode 73576a977e 111 hace 1 año
apps 73576a977e 111 hace 1 año
internal 73576a977e 111 hace 1 año
mock 73576a977e 111 hace 1 año
packages 30b3ee5c89 chore: fix type:check error (#3126) hace 1 año
public 5e99463cd0 perf: Refactor vite configuration hace 1 año
src 181b189d80 提交新版本 hace 1 año
types f4df2d5a4b feat: ColumnSetting and SizeSetting persist (#3398) hace 1 año
.browserslistrc 5e4be0adbc chore: update config hace 1 año
.commitlintrc.js dc39567a14 chore: remove @vitejs/plugin-legacy vite-plugin-imagemin hace 1 año
.dockerignore c659c14c5a Docker dynamic publish support. (#2903) hace 1 año
.editorconfig ee5fb223b6 chore: update readme.md hace 4 años
.env 73576a977e 111 hace 1 año
.env.analyze 5e99463cd0 perf: Refactor vite configuration hace 1 año
.env.development 73576a977e 111 hace 1 año
.env.docker c659c14c5a Docker dynamic publish support. (#2903) hace 1 año
.env.production 5e99463cd0 perf: Refactor vite configuration hace 1 año
.env.test 5e99463cd0 perf: Refactor vite configuration hace 1 año
.eslintignore 8a000705d1 fix: resolve conflicts between eslint and prettier and bump prettier-plugin-packagejson version to 2.4.6(#3328) hace 1 año
.eslintrc.js d3fd22dbbd chore: 解决 ESLint no-undef 规则校验问题和 basicTable 组件的类型问题,替换popover组件的 visible 属性。 (#3033) hace 1 año
.gitattributes 0ab2a541cb build: git config (#2474) hace 2 años
.gitignore ba2415c3b4 chore: Extract lint config hace 1 año
.gitpod.yml c2b207dd51 fix: Fix stylelint does not support html files hace 3 años
.npmrc ba2415c3b4 chore: Extract lint config hace 1 año
.prettierignore 1262e13067 升级最新依赖 并修复eslint报错 (#2896) hace 1 año
.prettierrc.js 5e4be0adbc chore: update config hace 1 año
.stylelintignore ba2415c3b4 chore: Extract lint config hace 1 año
.stylelintrc.js ba2415c3b4 chore: Extract lint config hace 1 año
CHANGELOG.en_US.md 642d48870c chore: release 2.8.0 hace 3 años
CHANGELOG.md 74b0dfd54f chore: update pkg hace 3 años
CHANGELOG.zh_CN.md 642d48870c chore: release 2.8.0 hace 3 años
CNAME 476b2b8acc chore: update CNAME hace 2 años
Dockerfile c659c14c5a Docker dynamic publish support. (#2903) hace 1 año
LICENSE 2f6253cfb6 initial commit hace 4 años
README.md 73576a977e 111 hace 1 año
README.zh-CN.md 73576a977e 111 hace 1 año
index.html c715d35ad5 fix: 修复index.html加载文字偏移的问题 (#3306) hace 1 año
nginx.conf 556575f501 feat: update nginx.conf 使用固定编译入口可能导致浏览器使用缓存js文件,而此配置可以解决 (#3045) hace 1 año
npminstall-debug.log 4b82db0593 得等等 hace 1 año
package.json 181b189d80 提交新版本 hace 1 año
pnpm-lock.yaml 181b189d80 提交新版本 hace 1 año
pnpm-workspace.yaml 5e99463cd0 perf: Refactor vite configuration hace 1 año
tsconfig.json 4d2fb0cb6f refactor: '/@/' ==> '@/' and '/#/ '==> '#/' (#3329) hace 1 año
turbo.json 5e4be0adbc chore: update config hace 1 año
uno.config.ts 7191ebc122 chore: 更新 unocss 版本及配置 (#3326) hace 1 año
vite.config.ts feadf64ee3 fix: Icon加载问题 hace 1 año

README.md

English | 中文

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

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

pnpm install


- run

```bash
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 @Jinmao

Thanks

JetBrains Logo (Main) logo.

Star History Chart

Star History Chart