Skip to content

Commit f2729e7

Browse files
MachinisteWebchrisvfritz
authored andcommitted
Set correct API link for FR documentation (vuejs#1074)
Signed-off-by: Bruno Lesieur <[email protected]>
1 parent 1af0a4e commit f2729e7

File tree

1 file changed

+20
-27
lines changed

1 file changed

+20
-27
lines changed

src/v2/api/index.md

Lines changed: 20 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ type: api
362362

363363
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**.
364364

365-
- **See also:** [Global Mixins](../guide/mixins.html#Global-Mixin)
365+
- **See also:** [Global Mixin](../guide/mixins.html#Global-Mixin)
366366

367367
<h3 id="Vue-compile">Vue.compile( template )</h3>
368368

@@ -551,8 +551,7 @@ if (version === 2) {
551551
vm.aDouble // -> 4
552552
```
553553

554-
- **See also:**
555-
- [Computed Properties](../guide/computed.html)
554+
- **See also:** [Computed Properties](../guide/computed.html)
556555

557556
### methods
558557

@@ -579,7 +578,7 @@ if (version === 2) {
579578
vm.a // 2
580579
```
581580

582-
- **See also:** [Methods and Event Handling](../guide/events.html)
581+
- **See also:** [Event Handling](../guide/events.html)
583582

584583
### watch
585584

@@ -616,7 +615,7 @@ if (version === 2) {
616615

617616
<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>
618617

619-
- **See also:** [Instance Methods - vm.$watch](#vm-watch)
618+
- **See also:** [Instance Methods / Data - vm.$watch](#vm-watch)
620619

621620
## Options / DOM
622621

@@ -658,7 +657,7 @@ if (version === 2) {
658657

659658
- **See also:**
660659
- [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)
662661

663662
### render
664663

@@ -672,8 +671,7 @@ if (version === 2) {
672671

673672
<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>
674673

675-
- **See also:**
676-
- [Render Functions](../guide/render-function.html)
674+
- **See also:** [Render Functions](../guide/render-function.html)
677675

678676
### renderError
679677

@@ -700,8 +698,7 @@ if (version === 2) {
700698
}).$mount('#app')
701699
```
702700

703-
- **See also:**
704-
- [Render Functions](../guide/render-function.html)
701+
- **See also:** [Render Functions](../guide/render-function.html)
705702

706703
## Options / Lifecycle Hooks
707704

@@ -841,8 +838,7 @@ if (version === 2) {
841838

842839
A hash of directives to be made available to the Vue instance.
843840

844-
- **See also:**
845-
- [Custom Directives](../guide/custom-directive.html)
841+
- **See also:** [Custom Directives](../guide/custom-directive.html)
846842

847843
### filters
848844

@@ -852,8 +848,7 @@ if (version === 2) {
852848

853849
A hash of filters to be made available to the Vue instance.
854850

855-
- **See also:**
856-
- [`Vue.filter`](#Vue-filter)
851+
- **See also:** [`Vue.filter`](#Vue-filter)
857852

858853
### components
859854

@@ -863,8 +858,7 @@ if (version === 2) {
863858

864859
A hash of components to be made available to the Vue instance.
865860

866-
- **See also:**
867-
- [Components](../guide/components.html)
861+
- **See also:** [Components](../guide/components.html)
868862

869863
## Options / Composition
870864

@@ -1140,7 +1134,7 @@ if (version === 2) {
11401134
11411135
The data object that the Vue instance is observing. The Vue instance proxies access to the properties on its data object.
11421136
1143-
- **See also:** [Options - data](#data)
1137+
- **See also:** [Options / Data - data](#data)
11441138
11451139
### vm.$props
11461140
@@ -1259,7 +1253,7 @@ if (version === 2) {
12591253
- **See also:**
12601254
- [`<slot>` Component](#slot-1)
12611255
- [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)
12631257
12641258
### vm.$scopedSlots
12651259
@@ -1278,7 +1272,7 @@ if (version === 2) {
12781272
- **See also:**
12791273
- [`<slot>` Component](#slot-1)
12801274
- [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)
12821276
12831277
### vm.$refs
12841278
@@ -1292,7 +1286,7 @@ if (version === 2) {
12921286
12931287
- **See also:**
12941288
- [Child Component Refs](../guide/components.html#Child-Component-Refs)
1295-
- [ref](#ref)
1289+
- [Special Attributes - ref](#ref)
12961290
12971291
### vm.$isServer
12981292
@@ -1590,7 +1584,7 @@ if (version === 2) {
15901584
<span>{{msg}}</span>
15911585
```
15921586
1593-
- **See also:** [Data Binding Syntax - interpolations](../guide/syntax.html#Text)
1587+
- **See also:** [Data Binding Syntax - Interpolations](../guide/syntax.html#Text)
15941588
15951589
### v-html
15961590
@@ -1607,7 +1601,7 @@ if (version === 2) {
16071601
```html
16081602
<div v-html="html"></div>
16091603
```
1610-
- **See also:** [Data Binding Syntax - interpolations](../guide/syntax.html#Raw-HTML)
1604+
- **See also:** [Data Binding Syntax - Interpolations](../guide/syntax.html#Raw-HTML)
16111605
16121606
### v-show
16131607
@@ -1654,8 +1648,7 @@ if (version === 2) {
16541648
</div>
16551649
```
16561650
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)
16591652
16601653
### v-else-if
16611654
@@ -1805,7 +1798,7 @@ if (version === 2) {
18051798
```
18061799

18071800
- **See also:**
1808-
- [Methods and Event Handling](../guide/events.html)
1801+
- [Event Handling](../guide/events.html)
18091802
- [Components - Custom Events](../guide/components.html#Custom-Events)
18101803

18111804
### v-bind
@@ -1879,7 +1872,7 @@ if (version === 2) {
18791872

18801873
- **See also:**
18811874
- [Class and Style Bindings](../guide/class-and-style.html)
1882-
- [Components - Component Props](../guide/components.html#Props)
1875+
- [Components - Props](../guide/components.html#Props)
18831876
- [Components - `.sync` Modifier](../guide/components.html#sync-Modifier)
18841877

18851878
### v-model
@@ -1969,7 +1962,7 @@ if (version === 2) {
19691962

19701963
- **See also:**
19711964
- [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)
19731966

19741967
## Special Attributes
19751968

0 commit comments

Comments
 (0)