File tree Expand file tree Collapse file tree 4 files changed +35
-1
lines changed Expand file tree Collapse file tree 4 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ const sidebar = {
157
157
'/api/global-api' ,
158
158
{
159
159
title : 'Options' ,
160
+ path : '/api/options-api' ,
160
161
collapsable : false ,
161
162
children : [
162
163
'/api/options-data' ,
@@ -174,6 +175,7 @@ const sidebar = {
174
175
'/api/built-in-components.md' ,
175
176
{
176
177
title : 'Reactivity API' ,
178
+ path : '/api/reactivity-api' ,
177
179
collapsable : false ,
178
180
children : [
179
181
'/api/basic-reactivity' ,
@@ -296,7 +298,7 @@ module.exports = {
296
298
} ,
297
299
{
298
300
text : 'API Reference' ,
299
- link : '/api/application-config '
301
+ link : '/api/'
300
302
} ,
301
303
{
302
304
text : 'Ecosystem' ,
Original file line number Diff line number Diff line change
1
+ # API
2
+
3
+ The Vue.js API contains the following categories:
4
+
5
+ - [ Application Config] ( /api/application-config.html )
6
+ - [ Application API] ( /api/application-api.html )
7
+ - [ Global API] ( /api/global-api.html )
8
+ - [ Options API] ( /api/options-api.html )
9
+ - [ Instance Properties] ( /api/instance-properties.html )
10
+ - [ Instance Methods] ( /api/instance-methods.html )
11
+ - [ Directives] ( /api/directives.html )
12
+ - [ Special Attributes] ( /api/special-attributes.html )
13
+ - [ Built-in Components] ( /api/built-in-components.html )
14
+ - [ Reactivity API] ( /api/reactivity-api.html )
15
+ - [ Composition API] ( /api/composition-api.html )
Original file line number Diff line number Diff line change
1
+ # Options API
2
+
3
+ The Options API contains the following sections:
4
+
5
+ - [ Data] ( /api/options-data.html )
6
+ - [ DOM] ( /api/options-dom.html )
7
+ - [ Lifecycle Hooks] ( /api/options-lifecycle-hooks.html )
8
+ - [ Assets] ( /api/options-assets.html )
9
+ - [ Composition] ( /api/options-composition.html )
10
+ - [ Miscellaneous] ( /api/options-misc.html )
Original file line number Diff line number Diff line change
1
+ # Reactivity API
2
+
3
+ The Reactivity API contains the following sections:
4
+
5
+ - [ Basic Reactivity APIs] ( /api/basic-reactivity.html )
6
+ - [ Refs] ( /api/refs-api.html )
7
+ - [ Computed and watch] ( /api/computed-watch-api.html )
You can’t perform that action at this time.
0 commit comments