Skip to content

Commit 6441edb

Browse files
committed
fix internal link on component
1 parent 45197b3 commit 6441edb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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', {

0 commit comments

Comments
 (0)