-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathzh.ts
More file actions
83 lines (82 loc) · 2.14 KB
/
zh.ts
File metadata and controls
83 lines (82 loc) · 2.14 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
import type { SidebarOptions } from '@vuepress/theme-default'
export const sidebarZh: SidebarOptions = {
'/zh/guide/': [
{
text: '指南',
children: [
'/zh/guide/introduction.md',
'/zh/guide/getting-started.md',
'/zh/guide/configuration.md',
'/zh/guide/page.md',
'/zh/guide/markdown.md',
'/zh/guide/assets.md',
'/zh/guide/i18n.md',
'/zh/guide/deployment.md',
'/zh/guide/theme.md',
'/zh/guide/plugin.md',
'/zh/guide/bundler.md',
'/zh/guide/migration.md',
'/zh/guide/troubleshooting.md',
],
},
],
'/zh/advanced/': [
{
text: '深入',
children: [
'/zh/advanced/architecture.md',
'/zh/advanced/plugin.md',
'/zh/advanced/theme.md',
],
},
{
text: 'Cookbook',
children: [
'/zh/advanced/cookbook/README.md',
'/zh/advanced/cookbook/usage-of-client-config.md',
'/zh/advanced/cookbook/adding-extra-pages.md',
'/zh/advanced/cookbook/making-a-theme-extendable.md',
'/zh/advanced/cookbook/passing-data-to-client-code.md',
'/zh/advanced/cookbook/markdown-and-vue-sfc.md',
'/zh/advanced/cookbook/resolving-routes.md',
],
},
],
'/zh/reference/': [
{
text: '核心',
collapsible: true,
children: [
'/zh/reference/cli.md',
'/zh/reference/config.md',
'/zh/reference/frontmatter.md',
'/zh/reference/components.md',
'/zh/reference/plugin-api.md',
'/zh/reference/theme-api.md',
'/zh/reference/client-api.md',
'/zh/reference/node-api.md',
],
},
{
text: '打包工具',
children: [
'/zh/reference/bundler/vite.md',
'/zh/reference/bundler/webpack.md',
'/zh/reference/bundler/rspack.md',
],
},
{
text: '生态系统',
children: [
{
text: '默认主题',
link: 'https://ecosystem.vuejs.press/zh/themes/default/',
},
{
text: '插件',
link: 'https://ecosystem.vuejs.press/zh/plugins/',
},
],
},
],
}