Record the learning content
- 新增文件
- 配置
.vuepress
目录下的config.js
为新增的文件添加侧边栏菜单,如:
function genEsSidebar(title) {
return [
{
title,
collapsable: false,
children: [
'',
'js-basic',
'object-oriented',
'BOM',
'DOM1',
'DOM2',
'event',
'HTML5脚本编程',
'JSON',
'Ajax',
'error-debug',
'vedio-material', // +++
],
},
]
}
- 用
Git Bash
终端运行yarn deploy
命令进行发布,因为windows
终端没有sh
命令