From a667ff547d23e7eb4704f228d5ab379379627670 Mon Sep 17 00:00:00 2001 From: Libon Date: Sun, 29 Sep 2024 14:29:52 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E4=B8=AD=E6=9F=90=E4=BA=9B=E4=BB=A3=E7=A0=81=E5=9D=97=E7=9A=84?= =?UTF-8?q?=E8=AF=AD=E8=A8=80=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/guide/edit.md | 10 +++++----- docs/guide/vue2/start.md | 10 +++++----- docs/guide/vue3/start.md | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/guide/edit.md b/docs/guide/edit.md index 9a67306..727a0b3 100644 --- a/docs/guide/edit.md +++ b/docs/guide/edit.md @@ -2,18 +2,18 @@ 欢迎有意愿参与到开源的朋友,加入到本文档的编写,书写文档不仅是教会别人知识,更是用自己的表达方式概括自己所学习知识的一种方式,这对个人来说是不可多得的成长机会。 -```js +```bash -// 拉取项目 +# 拉取项目 git clone https://github.com/sunniejs/vue-h5-template -// 切换分支 +# 切换分支 git checkout -b docs origin/docs -// 安装依赖 +# 安装依赖 yarn install -// 启动项目 +# 启动项目 yarn start ``` diff --git a/docs/guide/vue2/start.md b/docs/guide/vue2/start.md index 4e2c3bc..eefeeaf 100644 --- a/docs/guide/vue2/start.md +++ b/docs/guide/vue2/start.md @@ -1,17 +1,17 @@ # 启动项目 -```js +```bash -// 拉取项目 +# 拉取项目 git clone https://github.com/sunniejs/vue-h5-template -// 切换分支 +# 切换分支 git checkout -b vue2-h5-template origin/vue2-h5-template -// 安装依赖 +# 安装依赖 yarn install -// 启动项目 +# 启动项目 yarn serve ``` diff --git a/docs/guide/vue3/start.md b/docs/guide/vue3/start.md index 9bb2a27..cea9ad8 100644 --- a/docs/guide/vue3/start.md +++ b/docs/guide/vue3/start.md @@ -1,14 +1,14 @@ # 启动项目 -```js +```bash -// 拉取项目 +# 拉取项目 git clone https://github.com/sunniejs/vue-h5-template -// 安装依赖 +# 安装依赖 yarn install -// 启动项目 +# 启动项目 yarn dev ```