From 53580d8f0598c6179e2b737c1e649820cff74e99 Mon Sep 17 00:00:00 2001 From: Xicheng Guo Date: Thu, 27 Jun 2024 16:29:33 +0800 Subject: [PATCH] update docs --- src/.vitepress/sidebars/ecma-script.yaml | 4 ++-- src/frontend/vue/introduction/what-is-vue.md | 4 ++++ sync.mjs | 5 +++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/.vitepress/sidebars/ecma-script.yaml b/src/.vitepress/sidebars/ecma-script.yaml index 713a636..25c445d 100644 --- a/src/.vitepress/sidebars/ecma-script.yaml +++ b/src/.vitepress/sidebars/ecma-script.yaml @@ -95,9 +95,9 @@ - text: 切片或连接数组 link: /javascript/ecma-script/collection-reference/array/slice-or-concat-array - text: Map - link: /map + link: /javascript/ecma-script/collection-reference/map - text: Set - link: /set + link: /javascript/ecma-script/collection-reference/set - text: 迭代器与生成器 items: - text: 迭代器 diff --git a/src/frontend/vue/introduction/what-is-vue.md b/src/frontend/vue/introduction/what-is-vue.md index f49eda4..840b6ef 100644 --- a/src/frontend/vue/introduction/what-is-vue.md +++ b/src/frontend/vue/introduction/what-is-vue.md @@ -1,3 +1,7 @@ +--- +aside: false +--- + # 什么是 Vue ## Vue 是什么 diff --git a/sync.mjs b/sync.mjs index dc71673..a38efba 100644 --- a/sync.mjs +++ b/sync.mjs @@ -7,12 +7,13 @@ import fs from "fs"; const repoURLs = [ 'https://github.com/GuoXiCheng/react-sandbox.git', 'https://github.com/GuoXiCheng/javascript-sandbox.git', + 'https://github.com/GuoXiCheng/vue-sandbox.git', ]; - + if (!fs.existsSync(projectsDir)) { fs.mkdirSync(projectsDir); } - + repoURLs.forEach(repoURL => { let cloneCommand;