1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-08 13:09:25 +08:00

refactor: 配置全局采用ts改写,优化导航栏

- ts改写配置文件
- 导航栏内容优化,修复一些问题
- 新增一些文档,调整样式显示
This commit is contained in:
妹妹下雨回不去
2023-03-02 16:38:11 +08:00
parent a144154f93
commit 7bd3072ee1
84 changed files with 1987 additions and 1752 deletions

View File

@@ -0,0 +1,16 @@
export const algorithmSidebar = [
{
text: '基础入门',
link: "/ds/basic_introduction",
collapsible: false,
children: [{
text: '1.1 基本概念',
link: '/ds/basic_introduction/1.basic_concepts.md'
}, {
text: '1.2 数据结构三要素',
link: '/ds/basic_introduction/2.three_elements_of_data_structure.md'
}, {
text: '1.3 算法和算法评价',
link: '/ds/basic_introduction/3.algorithm_and_algorithm_evaluation.md'
}],
}]