@@ -362,7 +362,7 @@ type: api
362
362
363
363
Apply a mixin globally, which affects every Vue instance created afterwards. This can be used by plugin authors to inject custom behavior into components. ** Not recommended in application code** .
364
364
365
- - ** See also:** [ Global Mixins ] ( ../guide/mixins.html#Global-Mixin )
365
+ - ** See also:** [ Global Mixin ] ( ../guide/mixins.html#Global-Mixin )
366
366
367
367
<h3 id =" Vue-compile " >Vue.compile( template )</h3 >
368
368
@@ -551,8 +551,7 @@ if (version === 2) {
551
551
vm .aDouble // -> 4
552
552
```
553
553
554
- - ** See also:**
555
- - [ Computed Properties] ( ../guide/computed.html )
554
+ - ** See also:** [ Computed Properties] ( ../guide/computed.html )
556
555
557
556
### methods
558
557
@@ -579,7 +578,7 @@ if (version === 2) {
579
578
vm .a // 2
580
579
```
581
580
582
- - ** See also:** [ Methods and Event Handling] ( ../guide/events.html )
581
+ - ** See also:** [ Event Handling] ( ../guide/events.html )
583
582
584
583
### watch
585
584
@@ -616,7 +615,7 @@ if (version === 2) {
616
615
617
616
<p class =" tip " >Note that __you should not use an arrow function to define a watcher__ (e.g. `searchQuery: newValue => this.updateAutocomplete(newValue)`). The reason is arrow functions bind the parent context, so `this` will not be the Vue instance as you expect and `this.updateAutocomplete` will be undefined.</p >
618
617
619
- - ** See also:** [ Instance Methods - vm.$watch] ( #vm-watch )
618
+ - ** See also:** [ Instance Methods / Data - vm.$watch] ( #vm-watch )
620
619
621
620
## Options / DOM
622
621
@@ -658,7 +657,7 @@ if (version === 2) {
658
657
659
658
- ** See also:**
660
659
- [ Lifecycle Diagram] ( ../guide/instance.html#Lifecycle-Diagram )
661
- - [ Content Distribution] ( ../guide/components.html#Content-Distribution-with-Slots )
660
+ - [ Content Distribution with Slots ] ( ../guide/components.html#Content-Distribution-with-Slots )
662
661
663
662
### render
664
663
@@ -672,8 +671,7 @@ if (version === 2) {
672
671
673
672
<p class =" tip " >The `render` function has priority over the render function compiled from `template` option or in-DOM HTML template of the mounting element which is specified by the `el` option.</p >
674
673
675
- - ** See also:**
676
- - [ Render Functions] ( ../guide/render-function.html )
674
+ - ** See also:** [ Render Functions] ( ../guide/render-function.html )
677
675
678
676
### renderError
679
677
@@ -700,8 +698,7 @@ if (version === 2) {
700
698
}).$mount (' #app' )
701
699
```
702
700
703
- - ** See also: **
704
- - [Render Functions](../ guide/ render- function .html)
701
+ - ** See also: ** [Render Functions](../ guide/ render- function .html)
705
702
706
703
## Options / Lifecycle Hooks
707
704
@@ -841,8 +838,7 @@ if (version === 2) {
841
838
842
839
A hash of directives to be made available to the Vue instance.
843
840
844
- - **See also:**
845
- - [Custom Directives](../guide/custom-directive.html)
841
+ - **See also:** [Custom Directives](../guide/custom-directive.html)
846
842
847
843
### filters
848
844
@@ -852,8 +848,7 @@ if (version === 2) {
852
848
853
849
A hash of filters to be made available to the Vue instance.
854
850
855
- - **See also:**
856
- - [`Vue.filter`](#Vue-filter)
851
+ - **See also:** [`Vue.filter`](#Vue-filter)
857
852
858
853
### components
859
854
@@ -863,8 +858,7 @@ if (version === 2) {
863
858
864
859
A hash of components to be made available to the Vue instance.
865
860
866
- - **See also:**
867
- - [Components](../guide/components.html)
861
+ - **See also:** [Components](../guide/components.html)
868
862
869
863
## Options / Composition
870
864
@@ -1140,7 +1134,7 @@ if (version === 2) {
1140
1134
1141
1135
The data object that the Vue instance is observing. The Vue instance proxies access to the properties on its data object.
1142
1136
1143
- - **See also:** [Options - data](#data)
1137
+ - **See also:** [Options / Data - data](#data)
1144
1138
1145
1139
### vm.$props
1146
1140
@@ -1259,7 +1253,7 @@ if (version === 2) {
1259
1253
- **See also:**
1260
1254
- [` < slot> ` Component](#slot-1)
1261
1255
- [Content Distribution with Slots](../guide/components.html#Content-Distribution-with-Slots)
1262
- - [Render Functions: Slots](../guide/render-function.html#Slots)
1256
+ - [Render Functions - Slots](../guide/render-function.html#Slots)
1263
1257
1264
1258
### vm.$scopedSlots
1265
1259
@@ -1278,7 +1272,7 @@ if (version === 2) {
1278
1272
- **See also:**
1279
1273
- [` < slot> ` Component](#slot-1)
1280
1274
- [Scoped Slots](../guide/components.html#Scoped-Slots)
1281
- - [Render Functions: Slots](../guide/render-function.html#Slots)
1275
+ - [Render Functions - Slots](../guide/render-function.html#Slots)
1282
1276
1283
1277
### vm.$refs
1284
1278
@@ -1292,7 +1286,7 @@ if (version === 2) {
1292
1286
1293
1287
- **See also:**
1294
1288
- [Child Component Refs](../guide/components.html#Child-Component-Refs)
1295
- - [ref](#ref)
1289
+ - [Special Attributes - ref](#ref)
1296
1290
1297
1291
### vm.$isServer
1298
1292
@@ -1590,7 +1584,7 @@ if (version === 2) {
1590
1584
< span> {{msg}}< / span>
1591
1585
` ` `
1592
1586
1593
- - **See also:** [Data Binding Syntax - interpolations ](../guide/syntax.html#Text)
1587
+ - **See also:** [Data Binding Syntax - Interpolations ](../guide/syntax.html#Text)
1594
1588
1595
1589
### v-html
1596
1590
@@ -1607,7 +1601,7 @@ if (version === 2) {
1607
1601
` ` ` html
1608
1602
< div v- html= " html" >< / div>
1609
1603
` ` `
1610
- - **See also:** [Data Binding Syntax - interpolations ](../guide/syntax.html#Raw-HTML)
1604
+ - **See also:** [Data Binding Syntax - Interpolations ](../guide/syntax.html#Raw-HTML)
1611
1605
1612
1606
### v-show
1613
1607
@@ -1654,8 +1648,7 @@ if (version === 2) {
1654
1648
</div>
1655
1649
```
1656
1650
1657
- - **See also:**
1658
- - [Conditional Rendering - v-else](../guide/conditional.html#v-else)
1651
+ - **See also:** [Conditional Rendering - v-else](../guide/conditional.html#v-else)
1659
1652
1660
1653
### v-else-if
1661
1654
@@ -1805,7 +1798,7 @@ if (version === 2) {
1805
1798
` ` `
1806
1799
1807
1800
- ** See also: **
1808
- - [Methods and Event Handling](../ guide/ events .html )
1801
+ - [Event Handling](../ guide/ events .html )
1809
1802
- [Components - Custom Events](../ guide/ components .html #Custom- Events)
1810
1803
1811
1804
### v- bind
@@ -1879,7 +1872,7 @@ if (version === 2) {
1879
1872
1880
1873
- ** See also: **
1881
1874
- [Class and Style Bindings](../ guide/ class - and- style .html )
1882
- - [Components - Component Props](../ guide/ components .html #Props)
1875
+ - [Components - Props](../ guide/ components .html #Props)
1883
1876
- [Components - ` .sync` Modifier](../ guide/ components .html #sync- Modifier)
1884
1877
1885
1878
### v- model
@@ -1969,7 +1962,7 @@ if (version === 2) {
1969
1962
1970
1963
- ** See also: **
1971
1964
- [Data Binding Syntax - interpolations](../ guide/ syntax .html #Text )
1972
- - [Components - Cheap Static Components with v- once](../ guide/ components .html #Cheap- Static- Components- with - v- once)
1965
+ - [Components - Cheap Static Components with ` v-once` ](../ guide/ components .html #Cheap- Static- Components- with - v- once)
1973
1966
1974
1967
## Special Attributes
1975
1968
0 commit comments