1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-24 10:39:50 +08:00

docs: update

This commit is contained in:
妹妹下雨回不去
2023-03-02 21:18:40 +08:00
parent f453113304
commit 80f197700e
14 changed files with 999 additions and 44 deletions

View File

@@ -40,33 +40,13 @@ export const navbar = [
text: "计算机网络",
link: "/manuscripts/cn"
},
{
text: '其他资料',
children: [{
text: '考研相关',
children: [{
text: '111',
link: '/333'
}]
}, {
text: "思维导图",
children: [{
text: '数据结构',
link: '/note-map/ds-map'
}, {
text: '操作系统',
link: '/note-map/os-map'
}, {
text: '计算机组成原理',
link: '/note-map/ccp-map'
}, {
text: '计算机网络',
link: '/note-map/cn-map'
}]
}]
},
{
text: "大事记",
link: "/big-event-history"
},
{
text: '其他',
link: "/manuscripts/note-map"
},
];

View File

@@ -2,6 +2,8 @@ import {algorithmSidebar} from "../../manuscripts/algorithm/algorithm.sidebar";
import {dsSidebar} from "../../manuscripts/ds/ds.sidebar";
import {cppSidebar} from "../../manuscripts/ccp/cpp.sidebar";
import osSidebar from "../../manuscripts/os/os.sidebar";
import {cnSidebar} from "../../manuscripts/cn/cn.sidebar";
import {noteMapSidebar} from "../../manuscripts/note-map/note-map.sidebar";
export const sidebar = {
"/ds": dsSidebar,
@@ -9,5 +11,6 @@ export const sidebar = {
"/manuscripts/ds":dsSidebar,
"/manuscripts/os":osSidebar,
"/manuscripts/ccp":cppSidebar,
"/manuscripts/cn":algorithmSidebar,
"/manuscripts/cn":cnSidebar,
"/manuscripts/note-map":noteMapSidebar,
}