Skip to content

Commit 05a1a31

Browse files
authored
Update component-basics.md (#654)
1 parent 4ff6eb6 commit 05a1a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/component-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Which can be used in the template to control the font size of all blog posts:
176176
```html
177177
<div id="blog-posts-events-demo">
178178
<div v-bind:style="{ fontSize: postFontSize + 'em' }">
179-
<blog-post v-for="post in posts" :key="post.id" :title="title"></blog-post>
179+
<blog-post v-for="post in posts" :key="post.id" :title="post.title"></blog-post>
180180
</div>
181181
</div>
182182
```

0 commit comments

Comments
 (0)