Skip to content

Commit ed0ef6d

Browse files
author
qhdhiman
committed
更新�REAME.md
1 parent 2c23efc commit ed0ef6d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VUE-CLI-MUILT-PAGE VUE多页开发构建插件
22
该插件为vue-cli3的cli-plugin。插件依托于vue-cli3运行环境,在使用vue-cli3的vue create project创建好项目后在项目根目录下执行 vue add vue-cli-multi-page 来安装此插件,安装完毕后会自动修改项目目录为多页开发环境。<br>
3-
新建开发模块使用 npm create module<br>
3+
新建开发模块使用 npm run add module<br>
44
本地启动开发模块 npm run serve module<br>
55
本地构建一个模块 npm run build module<br>
66
本地构建多个模块 npm run build m1 m2 m3...<br>
@@ -56,6 +56,7 @@ vue add vue-cli-plugin-multi-page // npm地址:https://www.npmjs.com/package/vue
5656
1.列表内容先clone本项目到本地<br>
5757
2.按该插件要求修改项目目录结构<br>
5858
3.在项目package.json文件中引入本插件<br>
59+
4.*在本地开发模式中使用npm run add modulue 命令可能会出现抄不到vue-cli-plugin-multi-page路径的问题,先使用vue add vue-cli-plugin-multi-page 解决*
5960
</span>
6061
``` json
6162
# pageckage.json
@@ -68,9 +69,9 @@ vue add vue-cli-plugin-multi-page // npm地址:https://www.npmjs.com/package/vue
6869
}
6970
```
7071

71-
## 2.新建模块
72+
## 2.新建模块
7273
```npm
73-
npm create [module]
74+
npm run add [module]
7475
```
7576
## 3.本地启动模块 ✅
7677
```npm

generator/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = (api, options, rootOptions) => {
1313
// doesCompile: api.hasPlugin('babel') || api.hasPlugin('typescript')
1414
// })
1515

16-
if (options.foo) {
17-
// 有条件地生成文件
18-
}
16+
// if (options.foo) {
17+
// // 有条件地生成文件
18+
// }
1919
}

0 commit comments

Comments
 (0)