diff --git a/docs/guide/vue2/lint.md b/docs/guide/vue2/lint.md index 20bb930..417ddb2 100644 --- a/docs/guide/vue2/lint.md +++ b/docs/guide/vue2/lint.md @@ -1,6 +1,6 @@ # Eslint + Pettier 统一开发规范 -VScode (版本 1.47.3)安装 `eslint` `prettier` `vetur` 插件 `.vue` 文件使用 vetur 进行格式化,其他使用`prettier`,后面会专门写个如何使用配合使用这三个玩意儿 +VScode 安装 `eslint` `prettier` `vetur` 插件 `.vue` 文件使用 vue 插件进行格式化,其他使用`prettier` 在文件 `.prettierrc` 里写 属于你的 pettier 规则 diff --git a/docs/guide/vue2/start.md b/docs/guide/vue2/start.md index eefeeaf..a0564ea 100644 --- a/docs/guide/vue2/start.md +++ b/docs/guide/vue2/start.md @@ -1,7 +1,6 @@ # 启动项目 ```bash - # 拉取项目 git clone https://github.com/sunniejs/vue-h5-template @@ -13,5 +12,4 @@ yarn install # 启动项目 yarn serve - ``` diff --git a/docs/guide/vue3/start.md b/docs/guide/vue3/start.md index 7174981..bdf0aa9 100644 --- a/docs/guide/vue3/start.md +++ b/docs/guide/vue3/start.md @@ -5,20 +5,12 @@ # 拉取项目 git clone https://github.com/sunniejs/vue-h5-template -<<<<<<< Updated upstream # 安装依赖 -yarn install - -# 启动项目 -yarn dev -======= -// 安装依赖 - pnpm install - yarn install -// 启动项目 +# 启动项目 - pnpm dev - yarn dev ->>>>>>> Stashed changes ```