Skip to content

Commit cec5d31

Browse files
committed
Merge pull request #145 from vuejs-jp/fix/reference_url
fix internal link on list section
2 parents a7ab66d + 6441edb commit cec5d31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/guide/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Some HTML elements, for example `<table>`, has restrictions on what elements can
145145

146146
Every component instance has its own **isolated scope**. This means you cannot (and should not) directly reference parent data in a child component's template. Data can be passed down to child components using **props**.
147147

148-
A "prop" is a field on a component's data that is expected to be passed down from its parent component. A child component needs to explicitly declare the props it expects to receive using the [`props` option](/api/options.html#props):
148+
A "prop" is a field on a component's data that is expected to be passed down from its parent component. A child component needs to explicitly declare the props it expects to receive using the [`props` option](/api/#props):
149149

150150
``` js
151151
Vue.component('child', {

source/guide/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,4 @@ Sometimes we only need to display a filtered or sorted version of the Array with
286286
1. Create a computed property that returns the filtered or sorted Array;
287287
2. Use the built-in `filterBy` and `orderBy` filters.
288288

289-
A computed property would give you finer-grained control and more flexibility since it's full JavaScript; but the filters can be more convenient for common use cases. For detailed usage of the Array filters, check out their [documentation](/api/filters.html#filterBy).
289+
A computed property would give you finer-grained control and more flexibility since it's full JavaScript; but the filters can be more convenient for common use cases. For detailed usage of the Array filters, check out their [documentation](/api/#filterBy).

0 commit comments

Comments
 (0)