You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wanggang
80c7755992
|
1 year ago | |
---|---|---|
.. | ||
build | 1 year ago | |
mock | 1 year ago | |
plop-templates | 1 year ago | |
public | 1 year ago | |
src | 1 year ago | |
static | 1 year ago | |
tests/unit | 1 year ago | |
.editorconfig | 1 year ago | |
.env.development | 1 year ago | |
.env.production | 1 year ago | |
.env.staging | 1 year ago | |
.eslintignore | 1 year ago | |
.eslintrc.js | 1 year ago | |
.gitignore | 1 year ago | |
.travis.yml | 1 year ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago | |
SettleAccount-vue.rar | 1 year ago | |
babel.config.js | 1 year ago | |
jest.config.js | 1 year ago | |
jsconfig.json | 1 year ago | |
package.json | 1 year ago | |
plopfile.js | 1 year ago | |
postcss.config.js | 1 year ago | |
vue.config.js | 1 year ago |
README.md
Table of Contents generated with DocToc
Getting started
# clone the project
git clone -b i18n git@github.com:PanJiaChen/vue-element-admin.git
# enter the project directory
cd vue-element-admin
# install dependency
npm install
# develop
npm run dev
This will automatically open http://localhost:9527
Build
# build for test environment
npm run build:stage
# build for production environment
npm run build:prod
Advanced
# preview the release environment effect
npm run preview
# preview the release environment effect + static resource analysis
npm run preview -- --report
# code format check
npm run lint
# code format check and auto fix
npm run lint -- --fix