123456789101112131415161718192021222324252627282930313233 |
- 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/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;
|