Skip to content

Commit d802bf7

Browse files
committed
Merge pull request #263 from mul14/fix-links
Fix links
2 parents c56a011 + 9b60f2b commit d802bf7

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

src/api/index.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ type: api
238238
var myDirective = Vue.elementDirective('my-element')
239239
```
240240

241-
- **See also:** [Element Directives](/guide/custom-directive.html#Element_Directives)
241+
- **See also:** [Element Directives](/guide/custom-directive.html#Element-Directives)
242242

243243
<h3 id="Vue-filter">Vue.filter( id, [definition] )</h3>
244244

@@ -355,7 +355,7 @@ type: api
355355

356356
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**.
357357

358-
- **See also:** [Global Mixins](/guide/mixins.html#Global_Mixin)
358+
- **See also:** [Global Mixins](/guide/mixins.html#Global-Mixin)
359359

360360
## Options / Data
361361

@@ -468,7 +468,7 @@ type: api
468468

469469
- **See also:**
470470
- [Computed Properties](/guide/computed.html)
471-
- [Reactivity in Depth: Inside Computed Properties](/guide/reactivity.html#Inside_Computed_Properties)
471+
- [Reactivity in Depth: Inside Computed Properties](/guide/reactivity.html#Inside-Computed-Properties)
472472

473473
### methods
474474

@@ -544,7 +544,7 @@ type: api
544544

545545
If this option is available at instantiation, the instance will immediately enter compilation; otherwise, the user will have to explicitly call `vm.$mount()` to manually start the compilation.
546546

547-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
547+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
548548

549549
### template
550550

@@ -559,9 +559,9 @@ type: api
559559
Note that under certain situations, for example when the template contains more than one top-level element, or contains only plain text, the instance will become a fragment instance - i.e. one that manages a list of nodes rather than a single node. Non flow-control directives on the mount point for fragment instances are ignored.
560560

561561
- **See also:**
562-
- [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
563-
- [Content Distribution](/guide/components.html#Content_Distribution_with_Slots)
564-
- [Fragment Instance](/guide/components.html#Fragment_Instance)
562+
- [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
563+
- [Content Distribution](/guide/components.html#Content-Distribution-with-Slots)
564+
- [Fragment Instance](/guide/components.html#Fragment-Instance)
565565

566566
### replace
567567

@@ -626,7 +626,7 @@ type: api
626626

627627
Called synchronously after the instance has just been initialized, before data observation and event / watcher setup.
628628

629-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
629+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
630630

631631
### created
632632

@@ -636,7 +636,7 @@ type: api
636636

637637
Called synchronously after the instance is created. At this stage, the instance has finished processing the options which means the following have been set up: data observation, computed properties, methods, watch/event callbacks. However, DOM compilation has not been started, and the `$el` property will not be available yet.
638638

639-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
639+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
640640

641641
### beforeCompile
642642

@@ -646,7 +646,7 @@ type: api
646646

647647
Called right before the compilation starts.
648648

649-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
649+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
650650

651651
### compiled
652652

@@ -656,7 +656,7 @@ type: api
656656

657657
Called after the compilation is finished. At this stage all directives have been linked so data changes will trigger DOM updates. However, `$el` is not guaranteed to have been inserted into the document yet.
658658

659-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
659+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
660660

661661
### ready
662662

@@ -666,7 +666,7 @@ type: api
666666

667667
Called after compilation **and** the `$el` is **inserted into the document for the first time**, i.e. right after the first `attached` hook. Note this insertion must be executed via Vue (with methods like `vm.$appendTo()` or as a result of a directive update) to trigger the `ready` hook.
668668

669-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
669+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
670670

671671
### attached
672672

@@ -692,7 +692,7 @@ type: api
692692

693693
Called right before a Vue instance is destroyed. At this stage the instance is still fully functional.
694694

695-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
695+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
696696

697697
### destroyed
698698

@@ -704,7 +704,7 @@ type: api
704704

705705
Note if there is a leaving transition, the `destroyed` hook is called **after** the transition has finished.
706706

707-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
707+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
708708

709709
## Options / Assets
710710

@@ -718,7 +718,7 @@ type: api
718718

719719
- **See also:**
720720
- [Custom Directives](/guide/custom-directive.html)
721-
- [Assets Naming Convention](/guide/components.html#Assets_Naming_Convention)
721+
- [Assets Naming Convention](/guide/components.html#Assets-Naming-Convention)
722722

723723
### elementDirectives
724724

@@ -729,8 +729,8 @@ type: api
729729
A hash of element directives to be made available to the Vue instance.
730730

731731
- **See also:**
732-
- [Element Directives](/guide/custom-directive.html#Element_Directives)
733-
- [Assets Naming Convention](/guide/components.html#Assets_Naming_Convention)
732+
- [Element Directives](/guide/custom-directive.html#Element-Directives)
733+
- [Assets Naming Convention](/guide/components.html#Assets-Naming-Convention)
734734

735735
### filters
736736

@@ -742,7 +742,7 @@ type: api
742742

743743
- **See also:**
744744
- [Custom Filters](/guide/custom-filter.html)
745-
- [Assets Naming Convention](/guide/components.html#Assets_Naming_Convention)
745+
- [Assets Naming Convention](/guide/components.html#Assets-Naming-Convention)
746746

747747
### components
748748

@@ -787,7 +787,7 @@ type: api
787787

788788
Specify the parent instance for the instance to be created. Establishes a parent-child relationship between the two. The parent will be accessible as `this.$parent` for the child, and the child will be pushed into the parent's `$children` array.
789789

790-
- **See also:** [Parent-Child Communication](/guide/components.html#Parent-Child_Communication)
790+
- **See also:** [Parent-Child Communication](/guide/components.html#Parent-Child-Communication)
791791

792792
### events
793793

@@ -822,8 +822,8 @@ type: api
822822
```
823823

824824
- **See also:**
825-
- [Instance Methods - Events](#Instance_Methods_/_Events)
826-
- [Parent-Child Communication](/guide/components.html#Parent-Child_Communication)
825+
- [Instance Methods - Events](#Instance-Methods-Events)
826+
- [Parent-Child Communication](/guide/components.html#Parent-Child-Communication)
827827

828828
### mixins
829829

@@ -900,7 +900,7 @@ type: api
900900

901901
- **Details:**
902902

903-
The DOM element that the Vue instance is managing. Note that for [Fragment Instances](/guide/components.html#Fragment_Instance), `vm.$el` will return an anchor node that indicates the starting position of the fragment.
903+
The DOM element that the Vue instance is managing. Note that for [Fragment Instances](/guide/components.html#Fragment-Instance), `vm.$el` will return an anchor node that indicates the starting position of the fragment.
904904

905905
### vm.$options
906906

@@ -962,7 +962,7 @@ type: api
962962
An object that holds child components that have `v-ref` registered.
963963

964964
- **See also:**
965-
- [Child Component Refs](/guide/components.html#Child_Component_Refs)
965+
- [Child Component Refs](/guide/components.html#Child-Component-Refs)
966966
- [v-ref](#v-ref).
967967

968968
### vm.$els
@@ -1258,7 +1258,7 @@ type: api
12581258
// true in its callback
12591259
```
12601260

1261-
- **See also:** [Parent-Child Communication](/guide/components.html#Parent-Child_Communication)
1261+
- **See also:** [Parent-Child Communication](/guide/components.html#Parent-Child-Communication)
12621262

12631263
<h3 id="vm-broadcast">vm.$broadcast( event, [...args] )</h3>
12641264

@@ -1378,7 +1378,7 @@ type: api
13781378

13791379
- **See also:**
13801380
- [Vue.nextTick](#Vue-nextTick)
1381-
- [Async Update Queue](/guide/reactivity.html#Async_Update_Queue)
1381+
- [Async Update Queue](/guide/reactivity.html#Async-Update-Queue)
13821382

13831383
## Instance Methods / Lifecycle
13841384

@@ -1414,7 +1414,7 @@ type: api
14141414
new MyComponent().$mount().$appendTo('#container')
14151415
```
14161416

1417-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
1417+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
14181418

14191419
<h3 id="vm-destroy">vm.$destroy( [remove] )</h3>
14201420

@@ -1427,7 +1427,7 @@ type: api
14271427

14281428
Triggers the `beforeDestroy` and `destroyed` hooks.
14291429

1430-
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle_Diagram)
1430+
- **See also:** [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
14311431

14321432
## Directives
14331433

@@ -1516,9 +1516,9 @@ type: api
15161516

15171517
- **Param Attributes:**
15181518
- [`track-by`](/guide/list.html#track-by)
1519-
- [`stagger`](/guide/transitions.html#Staggering_Transitions)
1520-
- [`enter-stagger`](/guide/transitions.html#Staggering_Transitions)
1521-
- [`leave-stagger`](/guide/transitions.html#Staggering_Transitions)
1519+
- [`stagger`](/guide/transitions.html#Staggering-Transitions)
1520+
- [`enter-stagger`](/guide/transitions.html#Staggering-Transitions)
1521+
- [`leave-stagger`](/guide/transitions.html#Staggering-Transitions)
15221522

15231523
- **Usage:**
15241524

@@ -1730,7 +1730,7 @@ type: api
17301730
this.$refs.list
17311731
```
17321732

1733-
- **See also:** [Child Component Refs](/guide/components.html#Child_Component_Refs)
1733+
- **See also:** [Child Component Refs](/guide/components.html#Child-Component-Refs)
17341734

17351735
### v-el
17361736

@@ -1816,7 +1816,7 @@ type: api
18161816
<component :is="componentId"></component>
18171817
```
18181818

1819-
- **See also:** [Dynamic Components](/guide/components.html#Dynamic_Components)
1819+
- **See also:** [Dynamic Components](/guide/components.html#Dynamic-Components)
18201820

18211821
### slot
18221822

@@ -1831,7 +1831,7 @@ type: api
18311831

18321832
For detailed usage, see the guide section linked below.
18331833

1834-
- **See also:** [Content Distribution with Slots](/guide/components.html#Content_Distribution_with_Slots)
1834+
- **See also:** [Content Distribution with Slots](/guide/components.html#Content-Distribution-with-Slots)
18351835

18361836
### partial
18371837

0 commit comments

Comments
 (0)