-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfront-end.sidebar.ts
More file actions
90 lines (88 loc) · 1.58 KB
/
Copy pathfront-end.sidebar.ts
File metadata and controls
90 lines (88 loc) · 1.58 KB
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
export * from '../battle-interview/battle-interview.sidebar'
export * from '../develop-skill/develop-skill.sidebar'
export const FrontEndSidebar = [
{
text: 'HTML',
link: 'base-begin/html.md',
},
{
text: 'CSS',
link: 'base-begin/css.md',
},
{
text: 'JavaScript',
link: 'base-begin/javascript.md',
},
{
text: '前端框架',
// collapsible: true,
prefix: 'front-framework',
children: [
{
text: 'Vue',
link: 'vue.md',
},
{
text: 'Nuxt',
link: 'nuxt.md',
},
{
text: 'Vuepress',
link: 'vuepress',
},
{
text: 'JQuery',
link: 'jquery.md',
},
],
},
{
text: 'UI框架',
// collapsible: true,
prefix: 'ui-framework',
children: [
{
text: 'Ant-Design-Vue',
link: 'ant-design-vue.md',
},
{
text: 'Element-UI',
link: 'element-ui.md',
},
{
text: 'IView-Design',
link: 'iview-design.md',
},
{
text: 'VAnt-UI',
link: 'vant-ui.md',
},
{
text: 'Layer-UI',
link: 'layer-ui.md',
},
{
text: 'Bootstrap',
link: 'bootstrap.md',
},
],
},
{
text: '服务部署',
prefix: 'server-deploy',
children: [
{
text: '静态文件部署',
link: '静态文件部署.md',
},
{
text: '服务端渲染',
link: '服务端渲染.md',
},
{
text: 'SSR优化',
link: 'SSR优化.md',
},
],
},
]