1234567891011121314151617181920212223242526272829303132 |
- const content = [
- {
- title: "开发环境",
- children: [
- ["/setup/ide/nodejs", "Node.js"],
- ["/setup/ide/idea", "IDEA"],
- ["/setup/ide/vscode", "VS Code"],
- ["/setup/ide/vuecli", "vue-cli"],
- ["/setup/ide/plantUML", "plantUML"],
- ]
- },
- {
- title: "服务器配置",
- children: [
- {
- title: "基础配置",
- children: [
- ["/setup/server/nginx", "Nginx"],
- ["/setup/server/tomcat", "Tomcat"]
- ]
- },
- {
- title: "应用配置",
- children: [
- ["/setup/application/tuopu", "拓扑图配置"],
- ]
- },
- ]
- },
- ];
- module.exports = content;
|