-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathconfig.js
53 lines (49 loc) · 1.1 KB
/
config.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
module.exports = {
title: 'Vue Class Component',
description: 'ECMAScript / TypeScript decorator for class-style Vue components',
themeConfig: {
repo: 'vuejs/vue-class-component',
docsDir: 'docs',
editLinks: true,
nav: [
{
text: 'Guide',
link: '/'
},
{
text: 'API Reference',
link: '/api/'
}
],
sidebar: {
'/api/': [
''
],
'/': [
'',
'guide/installation.md',
{
title: 'General Guide',
collapsable: false,
children: [
'guide/class-component.md',
'guide/additional-hooks.md',
'guide/custom-decorators.md',
'guide/extend-and-mixins.md',
'guide/caveats.md'
]
},
{
title: 'TypeScript Guide',
collapsable: false,
children: [
'guide/props-definition.md',
'guide/property-type-declaration.md',
'guide/refs-type-extension.md',
'guide/hooks-auto-complete.md'
]
}
]
}
}
}