Commit 195672f7 authored by lipengcheng 's avatar lipengcheng

docs: 更新文档

parent cbf5694f
......@@ -10,31 +10,32 @@
## 运行
安装依赖:
```
npm install
```
### 本地开发
本地开发:
```
npm run serve
```
### 测试环境打包
测试环境打包:
```
npm run passports
```
### 生产环境打包
生产环境打包:
```
npm run build
```
### 打包后本地预览
打包后本地预览:
```
npm run start
```
### 格式校验及自动修复
格式校验及自动修复:
修复eslint报错:
```
npm run fix
......@@ -49,6 +50,34 @@ npm run prettier
### 分支
`develop`: 开发分支
### 目录结构
├── CHANGELOG.md // 更新日志
├── README.md
├── babel.config.js
├── config
│ └── baseUrl.js
├── package.json
├── public
│ ├── favicon.ico
│ ├── img
│ ├── index.html
│ └── robots.txt
├── src // 源码目录
│ ├── App.vue // 入口文件
│ ├── assets
│ ├── components // 组件目录
│ ├── main.js
│ ├── registerServiceWorker.js
│ ├── router
│ ├── store
│ └── views // 页面组件目录
├── vue.config.js
└── yarn.lock
注意:
1. 页面级组件(通俗理解为与路由对应的组件)统一放在`views`目录下。
2. 页面组件内的小组件、功能组件统一放在`components`目录下。例如,页面组件`pageA.vue`中拆分出了`pageheader.vue`组件,那么在`components`目录下新建一个**与页面同名的`pageA`目录**`pageA`的相关组件放进去即可。
## Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
****
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment