index.js 795 B

1234567891011121314151617181920212223242526272829
  1. const content = [
  2. {
  3. title: "系统架构",
  4. path: "/dev/lib/",
  5. children: [
  6. ["/dev/lib/system/standardization", "接口标准化"],
  7. ["/dev/lib/system/json", "json的应用"],
  8. ["/dev/lib/system/data_driven", "数据驱动"]
  9. ]
  10. },
  11. {
  12. title: "web接口",
  13. path: "/dev/lib/web/",
  14. children: [
  15. ["/dev/lib/web/create", "创建"],
  16. ["/dev/lib/web/update", "修改"],
  17. ["/dev/lib/web/delete", "删除"],
  18. ["/dev/lib/web/query", "查询"],
  19. ["/dev/lib/web/count", "统计"],
  20. ["/dev/lib/web/filters", "条件过滤"]
  21. ]
  22. },
  23. {
  24. title: "开发介绍",
  25. path: "/dev/lib/coding/"
  26. }
  27. ];
  28. module.exports = content;