@@ -325,7 +325,18 @@ function genSidebar4develop() {
325325function genSidebar4microServices ( ) {
326326 return [
327327 {
328- title : "理论基础" ,
328+ title : "架构" ,
329+ collapsable : false ,
330+ sidebarDepth : 0 ,
331+ children : [
332+ "arch/frame/arch-frame-evolution.md" ,
333+ "arch/frame/arch-frame-service.md" ,
334+ "arch/frame/arch-frame-orm.md" ,
335+ "arch/frame/arch-frame-rpc.md"
336+ ]
337+ } ,
338+ {
339+ title : "微服务" ,
329340 collapsable : false ,
330341 sidebarDepth : 0 ,
331342 children : [
@@ -342,7 +353,7 @@ function genSidebar4microServices() {
342353 ]
343354 } ,
344355 {
345- title : "ZeroMQ " ,
356+ title : "中间件 " ,
346357 collapsable : false ,
347358 sidebarDepth : 0 ,
348359 children : [
@@ -356,7 +367,7 @@ function genSidebar4microServices() {
356367
357368}
358369
359- // arch page
370+ // arch page 并入微服务
360371function genSidebar4arch ( ) {
361372 return [
362373 {
@@ -653,7 +664,7 @@ function genSidebar4booknote() {
653664 } ,
654665 {
655666 title : "深入理解计算机系统 详解" ,
656- collapsable : false ,
667+ collapsable : true ,
657668 sidebarDepth : 0 ,
658669 children : [
659670 "computersystem/computersystem-chapter-1.md" ,
@@ -881,7 +892,7 @@ function genSidebar4Article() {
881892 ]
882893 } ,
883894 {
884- title : "问题解决 " ,
895+ title : "问题 " ,
885896 collapsable : false ,
886897 sidebarDepth : 0 ,
887898 children : [
@@ -989,7 +1000,7 @@ function genSidebar4About() {
9891000function genSidebar4Grow ( ) {
9901001 return [
9911002 {
992- title : "个人成长 " ,
1003+ title : "个人 " ,
9931004 collapsable : false ,
9941005 sidebarDepth : 0 ,
9951006 children : [
@@ -1029,38 +1040,106 @@ function genSidebar4Vue() {
10291040 collapsable : false ,
10301041 sidebarDepth : 0 ,
10311042 children : [
1032- "basic/basic-concept.md" ,
1033- "basic/basic-use.md" ,
1034- "basic/basic-template-syntax.md" ,
1035- "basic/basic-data-bind.md" ,
1036- "basic/basic-mvvm.md" ,
1037- "basic/basic-event-handler.md" ,
1038- "basic/basic-compute-property.md" ,
1039- "basic/basic-watch-property.md" ,
1040- "basic/basic-bind-style.md" ,
1041- "basic/basic-condition-render.md" ,
1042- "basic/basic-list-render.md" ,
1043- "basic/basic-filter.md" ,
1044- "basic/basic-inner-cmd.md" ,
1045- "basic/basic-custom-cmd.md" ,
1046- "basic/basic-lifecycle.md" ,
1043+ "vue-overview.md" ,
1044+ "vue2/basic/basic-concept.md" ,
1045+ "vue2/basic/basic-use.md" ,
1046+ "vue2/basic/basic-template-syntax.md" ,
1047+ "vue2/basic/basic-data-bind.md" ,
1048+ "vue2/basic/basic-mvvm.md" ,
1049+ "vue2/basic/basic-event-handler.md" ,
1050+ "vue2/basic/basic-compute-property.md" ,
1051+ "vue2/basic/basic-watch-property.md" ,
1052+ "vue2/basic/basic-bind-style.md" ,
1053+ "vue2/basic/basic-condition-render.md" ,
1054+ "vue2/basic/basic-list-render.md" ,
1055+ "vue2/basic/basic-filter.md" ,
1056+ "vue2/basic/basic-inner-cmd.md" ,
1057+ "vue2/basic/basic-custom-cmd.md" ,
1058+ "vue2/basic/basic-lifecycle.md" ,
1059+ ]
1060+ } ,
1061+ {
1062+ title : "Vue 组件" ,
1063+ collapsable : false ,
1064+ sidebarDepth : 0 ,
1065+ children : [
1066+ "vue2/component/component-basic.md" ,
1067+ "vue2/component/component-no-single-file-comp.md" ,
1068+ "vue2/component/component-single-file-comp.md" ,
1069+ ]
1070+ } ,
1071+ {
1072+ title : "Vue 脚手架" ,
1073+ collapsable : false ,
1074+ sidebarDepth : 0 ,
1075+ children : [
1076+ "vue2/CLI/cli-init.md" ,
1077+ "vue2/CLI/cli-ref-props.md" ,
1078+ "vue2/CLI/cli-mixin.md" ,
1079+ "vue2/CLI/cli-plugin.md" ,
1080+ "vue2/CLI/cli-todolist-demo.md" ,
1081+ "vue2/CLI/cli-custom-event.md" ,
1082+ "vue2/CLI/cli-global-event-bus.md" ,
1083+ "vue2/CLI/cli-pub-sub.md" ,
1084+ "vue2/CLI/cli-transition.md" ,
1085+ ]
1086+ } ,
1087+ {
1088+ title : "Vue中的Ajax" ,
1089+ collapsable : false ,
1090+ sidebarDepth : 0 ,
1091+ children : [
1092+ "vue2/ajax/ajax-basic.md" ,
1093+ "vue2/ajax/ajax-slot.md" ,
1094+ "vue2/ajax/ajax-github-demo.md" ,
1095+ ]
1096+ } ,
1097+ {
1098+ title : "Vuex" ,
1099+ collapsable : false ,
1100+ sidebarDepth : 0 ,
1101+ children : [
1102+ "vue2/vuex/vuex-basic.md" ,
1103+ "vue2/vuex/vuex-use.md" ,
1104+ ]
1105+ } ,
1106+ {
1107+ title : "Vue Router" ,
1108+ collapsable : false ,
1109+ sidebarDepth : 0 ,
1110+ children : [
1111+ "vue2/vue_router/vue-router-basic.md" ,
1112+ "vue2/vue_router/vue-router-use.md" ,
1113+ "vue2/vue_router/vue-router-multi.md" ,
1114+ "vue2/vue_router/vue-router-deliver-params.md" ,
1115+ "vue2/vue_router/vue-router-program.md" ,
1116+ "vue2/vue_router/vue-router-cache.md" ,
1117+ "vue2/vue_router/vue-router-life-hook.md" ,
1118+ "vue2/vue_router/vue-router-nav-guard.md" ,
1119+ "vue2/vue_router/vue-router-work-mode.md" ,
10471120 ]
10481121 } ,
10491122 {
1050- title : "组件化编程 " ,
1123+ title : "Vue3 学习 " ,
10511124 collapsable : false ,
10521125 sidebarDepth : 0 ,
10531126 children : [
1054- "component/component-basic.md" ,
1055- "component/component-no-single-file-comp.md" ,
1056- "component/component-single-file-comp.md" ,
1127+ "vue3/vue3-use.md" ,
1128+ "vue3/vue3-project.md" ,
1129+ "vue3/vue3-composition-api.md" ,
1130+ "vue3/vue3-responsive-principle.md" ,
1131+ "vue3/vue3-lifecycle.md" ,
1132+ "vue3/vue3-other-composition.md" ,
1133+ "vue3/vue3-options-composition.md" ,
1134+ "vue3/vue3-new-component.md" ,
1135+ "vue3/vue3-other.md" ,
10571136 ]
10581137 }
10591138 ] ;
10601139}
10611140
10621141module . exports = {
10631142 genSidebar4Cplusplus, genSidebar4Database, genSidebar4Alg, genSidebar4Program, genSidebar4develop, genSidebar4microServices,
1064- genSidebar4arch , genSidebar4method, genSidebar4Devops, genSidebar4project, genSidebar4booknote, genSidebar4interview, genSidebar4Article,
1143+ genSidebar4method, genSidebar4Devops, genSidebar4project, genSidebar4booknote, genSidebar4interview, genSidebar4Article,
10651144 genSidebar4dailyUse, genSidebar4About, genSidebar4Grow, genSidebar4Vue
10661145} ;
0 commit comments