-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
141 lines (140 loc) · 3.25 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
intro: [
'note/readme',
{
label: 'JavaScript',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'note/js/network-request',
'note/js/xlsx',
'note/js/event-delegation',
'note/js/javascript-observer',
'note/js/canvasapi',
'note/js/jsModule',
'note/js/Closures',
'note/js/Promise',
'note/js/definePropertyProxy',
'note/js/createProject',
'note/js/executionContext',
'note/js/Equality_comparisons',
'note/js/eventLoop',
'note/js/ES6add',
'note/js/multiLabelCommunication',
],
},
{
label: 'TypeScript',
type: 'category',
link: {
type: 'generated-index',
},
items: ['note/ts/partialtype', 'note/ts/Generics'],
},
{
label: 'React',
type: 'category',
link: {
type: 'generated-index',
},
items: ['note/react/react-playground', 'note/react/react-render','note/react/react-hook'],
},
{
label: 'Vue',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'note/vue/vueReactivity',
'note/vue/createApp',
'note/vue/vueDiff',
'note/vue/vueCompiler',
'note/vue/vuePersistence',
'note/vue/vueRouter',
'note/vue/injunctiveComponent',
],
},
{
label: 'HTML',
type: 'category',
link: {
type: 'generated-index',
},
items: ['note/html/element-dialog', 'note/html/html-dialog'],
},
{
label: '数据处理',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'note/process-data/process-data-structure',
'note/process-data/sort',
'note/process-data/writtenExamination',
'note/process-data/list',
'note/process-data/slidingWindow',
'note/process-data/doublePointer',
],
},
{
label: '组件实现',
type: 'category',
link: {
type: 'generated-index',
},
items: ['note/components/CountDown'],
},
{
label: 'CSS',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'note/css/background',
'note/css/Pseudo-classes',
'note/css/Pseudo-elements',
'note/css/css-selectors',
'note/css/google-login',
'note/css/content-visibility',
'note/css/grid',
'note/css/form-sizing',
],
},
{
label: 'Http',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'note/http/httpCache',
'note/http/httpVersion',
'note/http/httpStatus',
'note/http/httpOther',
],
},
{
label: 'Other',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'other/docusaurus-syntax',
'other/chrome-devtools',
'other/WebPerformance',
'other/h5SelfAdaption',
'other/developSkill',
'other/git',
'other/docusaurus-optimization',
],
},
],
}
module.exports = sidebars