menu.json 536 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "menuItems": [
  3. {
  4. "key": "1",
  5. "icon": "AppleOutlined",
  6. "title": "主页",
  7. "path": "/"
  8. },
  9. {
  10. "key": "2",
  11. "icon": "AppleOutlined",
  12. "title": "节点管理",
  13. "path": "",
  14. "children": [
  15. {
  16. "key": "2",
  17. "icon": "AppleOutlined",
  18. "title": "节点",
  19. "path": "/node"
  20. },
  21. {
  22. "key": "3",
  23. "icon": "AppleOutlined",
  24. "title": "其他",
  25. "path": "/node/oth"
  26. }
  27. ]
  28. }
  29. ]
  30. }