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
| module.exports = {
| title: 'Vue Antd Admin',
| description: 'Vue Antd Admin',
| base: '/vue-antd-admin/',
| themeConfig: {
| logo: '/logo.png',
| repo: 'iczer/vue-antd-admin',
| docsDir: 'docs',
| editLinks: true,
| nav: [
| {text: '指南', link: '/'},
| {text: '配置', link: '/develop/'},
| {text: '主题', link: '/advance/theme'},
| ],
| lastUpdated: 'Last Updated',
| sidebar: [
| {
| title: '开始',
| collapsable: false,
| children: [
| '/start/use', '/start/faq'
| ]
| },
| {
| title: '开发',
| collapsable: false,
| children: [
| '/develop/block', '/develop/layout', '/develop/router', '/develop/page', '/develop/theme', '/develop/service', '/develop/mock'
| ]
| },
| {
| title: '进阶',
| collapsable: false,
| children: [
| '/advance/i18n', '/advance/chart', '/advance/theme', '/advance/error', '/advance/authority'
| ]
| },
| {
| title: '其它',
| collapsable: false,
| children: [
| '/other/upgrade', '/other/community'
| ]
| }
| ],
| nextLinks: true,
| prevLinks: true,
| }
| }
|
|