@@ -19,60 +19,83 @@ export default defineConfig({
1919 sidebar : {
2020 '/guide/' : [
2121 {
22- text : '基础语法 ' ,
22+ text : '📚 教程导航 ' ,
2323 items : [
24- { text : '变量和类型' , link : '/guide/01-variables-and-types/' } ,
25- { text : '运算符' , link : '/guide/02-operators/' } ,
26- { text : '输入输出' , link : '/guide/03-input-output/' } ,
27- { text : '注释' , link : '/guide/04-comments/' }
24+ { text : '🏠 教程首页' , link : '/guide/' } ,
25+ { text : '📖 学习指南' , link : '/guide/learning-guide' }
2826 ]
2927 } ,
3028 {
31- text : '控制结构 ' ,
29+ text : '🔤 基础语法 ' ,
3230 items : [
33- { text : '条件语句' , link : '/guide/05-conditions/' } ,
34- { text : '循环' , link : '/guide/06-loops/' } ,
35- { text : '循环控制' , link : '/guide/07-loop-control/' }
31+ { text : '📝 变量和类型' , link : '/guide/01-variables-and-types/' } ,
32+ { text : '🔢 运算符' , link : '/guide/02-operators/' } ,
33+ { text : '💬 输入输出' , link : '/guide/03-input-output/' } ,
34+ { text : '📋 注释' , link : '/guide/04-comments/' }
3635 ]
3736 } ,
3837 {
39- text : '数据结构 ' ,
38+ text : '🔀 控制结构 ' ,
4039 items : [
41- { text : '列表' , link : '/guide/08-lists/' } ,
42- { text : '元组' , link : '/guide/09-tuples/' } ,
43- { text : '字典' , link : '/guide/10-dictionaries/' } ,
44- { text : '集合' , link : '/guide/11-sets/' } ,
45- { text : '字符串' , link : '/guide/12-strings/' }
40+ { text : '❓ 条件语句' , link : '/guide/05-conditions/' } ,
41+ { text : '🔄 循环' , link : '/guide/06-loops/' } ,
42+ { text : '⏹️ 循环控制' , link : '/guide/07-loop-control/' }
43+ ]
44+ } ,
45+ {
46+ text : '📊 数据结构' ,
47+ items : [
48+ { text : '📋 列表' , link : '/guide/08-lists/' } ,
49+ { text : '📦 元组' , link : '/guide/09-tuples/' } ,
50+ { text : '🗂️ 字典' , link : '/guide/10-dictionaries/' } ,
51+ { text : '🎯 集合' , link : '/guide/11-sets/' } ,
52+ { text : '🔤 字符串' , link : '/guide/12-strings/' }
4653 ]
4754 }
4855 ] ,
4956 '/guide/01-variables-and-types/' : [
5057 {
51- text : '变量和数据类型' ,
58+ text : '🧭 快速导航' ,
59+ items : [
60+ { text : '🏠 返回教程首页' , link : '/guide/' } ,
61+ { text : '⬅️ 上一模块: 无' , link : '#' , class : 'disabled' } ,
62+ { text : '➡️ 下一模块: 运算符' , link : '/guide/02-operators/' }
63+ ]
64+ } ,
65+ {
66+ text : '📝 变量和数据类型' ,
5267 items : [
53- { text : '模块概述' , link : '/guide/01-variables-and-types/' } ,
54- { text : '基础变量' , link : '/guide/01-variables-and-types/basic-variables' } ,
55- { text : '数据类型' , link : '/guide/01-variables-and-types/data-types' } ,
56- { text : '动态类型' , link : '/guide/01-variables-and-types/dynamic-typing' } ,
57- { text : '类型转换' , link : '/guide/01-variables-and-types/type-conversion' } ,
58- { text : '变量命名' , link : '/guide/01-variables-and-types/variable-naming' } ,
59- { text : '综合练习' , link : '/guide/01-variables-and-types/exercises' }
68+ { text : '📖 模块概述' , link : '/guide/01-variables-and-types/' } ,
69+ { text : '🔤 基础变量' , link : '/guide/01-variables-and-types/basic-variables' } ,
70+ { text : '🏷️ 数据类型' , link : '/guide/01-variables-and-types/data-types' } ,
71+ { text : '🔄 动态类型' , link : '/guide/01-variables-and-types/dynamic-typing' } ,
72+ { text : '🔀 类型转换' , link : '/guide/01-variables-and-types/type-conversion' } ,
73+ { text : '📝 变量命名' , link : '/guide/01-variables-and-types/variable-naming' } ,
74+ { text : '💪 综合练习' , link : '/guide/01-variables-and-types/exercises' }
6075 ]
6176 }
6277 ] ,
6378 '/guide/02-operators/' : [
6479 {
65- text : '运算符' ,
80+ text : '🧭 快速导航' ,
81+ items : [
82+ { text : '🏠 返回教程首页' , link : '/guide/' } ,
83+ { text : '⬅️ 上一模块: 变量和类型' , link : '/guide/01-variables-and-types/' } ,
84+ { text : '➡️ 下一模块: 输入输出' , link : '/guide/03-input-output/' }
85+ ]
86+ } ,
87+ {
88+ text : '🔢 运算符' ,
6689 items : [
67- { text : '模块概述' , link : '/guide/02-operators/' } ,
68- { text : '算术运算符' , link : '/guide/02-operators/arithmetic-operators' } ,
69- { text : '比较运算符' , link : '/guide/02-operators/comparison-operators' } ,
70- { text : '逻辑运算符' , link : '/guide/02-operators/logical-operators' } ,
71- { text : '赋值运算符' , link : '/guide/02-operators/assignment-operators' } ,
72- { text : '位运算符' , link : '/guide/02-operators/bitwise-operators' } ,
73- { text : '成员运算符' , link : '/guide/02-operators/membership-operators' } ,
74- { text : '运算符优先级' , link : '/guide/02-operators/operator-precedence' } ,
75- { text : '综合练习' , link : '/guide/02-operators/exercises' }
90+ { text : '📖 模块概述' , link : '/guide/02-operators/' } ,
91+ { text : '➕ 算术运算符' , link : '/guide/02-operators/arithmetic-operators' } ,
92+ { text : '⚖️ 比较运算符' , link : '/guide/02-operators/comparison-operators' } ,
93+ { text : '🔗 逻辑运算符' , link : '/guide/02-operators/logical-operators' } ,
94+ { text : '📝 赋值运算符' , link : '/guide/02-operators/assignment-operators' } ,
95+ { text : '🔢 位运算符' , link : '/guide/02-operators/bitwise-operators' } ,
96+ { text : '🔍 成员运算符' , link : '/guide/02-operators/membership-operators' } ,
97+ { text : '📊 运算符优先级' , link : '/guide/02-operators/operator-precedence' } ,
98+ { text : '💪 综合练习' , link : '/guide/02-operators/exercises' }
7699 ]
77100 }
78101 ]
0 commit comments