From 45197b3b5cef4cbb8951aa8e25fb1f634c3586e9 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sun, 18 Oct 2015 01:13:50 +0900 Subject: [PATCH 1/2] fix internal link on list section --- source/guide/list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/list.md b/source/guide/list.md index ca610b58ff..ac33903148 100644 --- a/source/guide/list.md +++ b/source/guide/list.md @@ -286,4 +286,4 @@ Sometimes we only need to display a filtered or sorted version of the Array with 1. Create a computed property that returns the filtered or sorted Array; 2. Use the built-in `filterBy` and `orderBy` filters. -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). +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). From 6441edb90aeeaaf9d2ad52cb74e38834303a0fe1 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sun, 18 Oct 2015 02:27:38 +0900 Subject: [PATCH 2/2] fix internal link on component --- source/guide/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/components.md b/source/guide/components.md index 929f15920b..f86303abdd 100644 --- a/source/guide/components.md +++ b/source/guide/components.md @@ -145,7 +145,7 @@ Some HTML elements, for example ``, has restrictions on what elements can 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**. -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): +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): ``` js Vue.component('child', {