# vue-demo

## Project setup
```
yarn install
```

### Compiles and hot-reloads for development
```
yarn serve
```

### Compiles and minifies for production
```
yarn build
```

### Run your unit tests
```
yarn test:unit
```

### Lints and fixes files
```
yarn lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

### 环境变量配置
See [Mod and Env](https://cli.vuejs.org/zh/guide/mode-and-env.html).

|环境变量文件|备注|
|  ----  | ----  |
| .env               | 在所有的环境中被载入  |
| .env.local         | 在所有的环境中被载入，但会被 git 忽略，适用于本地开发配置 |
| .env.[mode]        | 只在指定的模式中被载入 |
| .env.[mode].local  | 只在指定的模式中被载入，但会被 git 忽略，但会被 git 忽略，适用于本地开发配置 |
