12345678910111213141516171819202122232425262728293031323334 |
- const content = [
- {
- title: '简介',
- path: '/standard/'
- },
- {
- title: "javascript",
- path: '/standard/javascript.md'
- },
- {
- title: "typescript",
- path: '/standard/typescript',
- children:[
- {title: "注释", path: '/standard/typescript/comment.md'},
- {title: "工具", path: '/standard/typescript/tools.md'},
- {title: "命名", path: '/standard/typescript/naming.md'},
- {title: "布局", path: '/standard/typescript/layout.md'},
- ]
- },
- {
- title: "约定",
- path: '/standard/appoint.md'
- },
- {
- title: "git 提交规范",
- path: '/standard/git.md'
- },
- {
- title: "typescript 自动生成 api 文档规范",
- path: '/standard/typedoc.md'
- },
- ];
- module.exports = content;
|