|
4 سال پیش | |
---|---|---|
.github | 4 سال پیش | |
.vscode | 4 سال پیش | |
build | 4 سال پیش | |
mock | 4 سال پیش | |
public | 4 سال پیش | |
src | 4 سال پیش | |
.editorconfig | 4 سال پیش | |
.env | 4 سال پیش | |
.env.development | 4 سال پیش | |
.env.production | 4 سال پیش | |
.eslintignore | 4 سال پیش | |
.eslintrc.js | 4 سال پیش | |
.gitignore | 4 سال پیش | |
.ls-lint.yml | 4 سال پیش | |
.prettierignore | 4 سال پیش | |
CHANGELOG.md | 4 سال پیش | |
LICENSE | 4 سال پیش | |
README.en-US.md | 4 سال پیش | |
README.md | 4 سال پیش | |
commitlint.config.js | 4 سال پیش | |
index.html | 4 سال پیش | |
lint-staged.config.js | 4 سال پیش | |
package.json | 4 سال پیش | |
postcss.config.js | 4 سال پیش | |
prettier.config.js | 4 سال پیش | |
stylelint.config.js | 4 سال پیش | |
tsconfig.json | 4 سال پیش | |
vite.config.ts | 4 سال پیش | |
yarn.lock | 4 سال پیش |
The documentation for 2.0 hasn't started yet, it will be provided later.
Node.js
: - Version>12.0.0
is better.yarn
> npm
> cnpm
: - Package management tool.Git
: - Tool of version managementVisual Studio Code
- (VSCode): Latest version
// Make git case sensitive to file names
git config core.ignorecase false
// Pull code of the project
git clone https://github.com/anncwb/vue-vben-admin.git vue-vben-admin-2.0
cd vue-vben-admin-2.0
// If you use other package management tool, you can install it by yourself
// if you hasn't install yarn, please run: npm install -g yarn
yarn install
yarn serve
yarn build # build
yarn build:no-cache # build, cache will be removed before build
yarn report # Generate build package report preview
yarn lint:stylelint # css formatting
yarn lint:prettier # js/ts code formatting
yarn reinstall # Remove dependencies and reinstall, supported window
yarn preview # Build and preview in local
yarn log # Generate CHANGELOG
yarn clean:cache # Delete cache
yarn clean:lib # Delete node_modules, supported window
Refer to vue specifications (Angular)
feat
Add new featuresfix
Fix problem/BUGstyle
Code style related and doesn't affect the running resultperf
Optimization/performance improvementrefactor
Refactorrevert
Undo edittest
Test relateddocs
Documentation/noteschore
Dependent update/scaffolding configuration modification etcworkflow
Workflow improvementsci
Continuous integrationtypes
Update file of type definitionwip
Developinggit checkout -b feat/xxxx
git commit -am 'feat(function): add xxxxx'
git push origin feat/xxxx
pull request
If you have more components/functions/suggestions/bugs/, welcome to submit pr or issue.