nav.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2019-2022 Mamoe Technologies and contributors.
  3. *
  4. * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
  5. * Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
  6. *
  7. * https://github.com/mamoe/mirai/blob/dev/LICENSE
  8. */
  9. module.exports = {
  10. text: "mirai-console",
  11. link: "/",
  12. items: [
  13. {text: "Index", link: "/"},
  14. {text: "配置项目", link: "/ConfiguringProjects.html"},
  15. {text: "启动 Console", link: "/Run.html"},
  16. {
  17. text: "后端插件开发基础", items: [
  18. {text: "插件 - Plugin 模块", link: "/plugin/Plugins.html"},
  19. {text: "插件 - JVM Plugin", link: "/plugin/JVMPlugin.html"},
  20. {text: "指令 - Command 模块", link: "/Commands.html"},
  21. {text: "存储 - PluginData 模块", link: "/PluginData.html"},
  22. {text: "权限 - Permission 模块", link: "/Permissions.html"},
  23. ]
  24. },
  25. {
  26. text: "后端插件开发进阶", items: [
  27. {text: "扩展 - Extension 模块和扩展点", link: "/Extensions.html"},
  28. ]
  29. },
  30. {
  31. text: "实现前端", items: [
  32. {text: "FrontEnd", link: "/FrontEnd.html"},
  33. ]
  34. },
  35. {
  36. text: "Misc", items: [
  37. {text: 'Q & A', link: '/QA.html'},
  38. {text: '日志配置', link: '/Logging.html'},
  39. {text: '内置命令', link: '/BuiltInCommands.html'},
  40. {text: 'Mirai Console 附录', link: '/Appendix.html'},
  41. {text: "插件 - JVM Plugin - 附录", link: "/plugin/JVMPlugin-Appendix.html"},
  42. {text: "插件 - JVM Plugin - 多插件数据交换", link: "/plugin/JVMPlugin-DataExchange.html"},
  43. {text: "插件 - JVM Plugin - 排错", link: "/plugin/JVMPlugin-Debug.html"},
  44. ]
  45. },
  46. ]
  47. }