暫無描述

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

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