index.js 833 B

1234567891011121314151617181920212223242526272829303132
  1. const content = [
  2. {
  3. title: "开发环境",
  4. children: [
  5. ["/setup/ide/nodejs", "Node.js"],
  6. ["/setup/ide/idea", "IDEA"],
  7. ["/setup/ide/vscode", "VS Code"],
  8. ["/setup/ide/vuecli", "vue-cli"],
  9. ["/setup/ide/plantUML", "plantUML"],
  10. ]
  11. },
  12. {
  13. title: "服务器配置",
  14. children: [
  15. {
  16. title: "基础配置",
  17. children: [
  18. ["/setup/server/nginx", "Nginx"],
  19. ["/setup/server/tomcat", "Tomcat"]
  20. ]
  21. },
  22. {
  23. title: "应用配置",
  24. children: [
  25. ["/setup/application/tuopu", "拓扑图配置"],
  26. ]
  27. },
  28. ]
  29. },
  30. ];
  31. module.exports = content;