💪 This is the background management for vue-admin
Blog backend management comes from the vue-admin(4.1.0) project template and is built and developed by the vue + ElementUI application
The background management is based on the node server can run, need to install the node server in advance
# clone the project
git clone git@github.com:MoonCheung/iKmooms-admin.git
# enter the project directory
cd vue-backstage
# install dependency
npm install
# develop
npm run dev
# build for test environment
npm run build:stage
# build for production environment
npm run build:prod
# 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