/note-lib

Record the learning content

Primary LanguageJavaScriptMIT LicenseMIT

note-lib

1. 项目描述

Record the learning content

2. 发布项目

  1. 新增文件
  2. 配置.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', // +++
      ],
    },
  ]
}
  1. Git Bash终端运行yarn deploy命令进行发布,因为windows终端没有sh命令