Bez popisu

liujq 80cdf85774 t před 3 roky
build 2386062e96 init před 3 roky
public 2386062e96 init před 3 roky
src 80cdf85774 t před 3 roky
tests 2386062e96 init před 3 roky
.editorconfig 2386062e96 init před 3 roky
.env.development 80cdf85774 t před 3 roky
.env.production 80cdf85774 t před 3 roky
.env.staging 80cdf85774 t před 3 roky
.eslintignore 2386062e96 init před 3 roky
.eslintrc.js 2386062e96 init před 3 roky
.gitignore 2386062e96 init před 3 roky
.travis.yml 2386062e96 init před 3 roky
LICENSE 2386062e96 init před 3 roky
README.md 2386062e96 init před 3 roky
babel.config.js 2386062e96 init před 3 roky
jest.config.js 2386062e96 init před 3 roky
jsconfig.json 2386062e96 init před 3 roky
package.json 2386062e96 init před 3 roky
postcss.config.js 2386062e96 init před 3 roky
vue.config.js 2386062e96 init před 3 roky

README.md

install dependency

npm install

develop

npm run dev


This will automatically open http://localhost:9528

## Build

```bash
# 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