Skip to content

Commit 9fcf20b

Browse files
authored
fix: missing comma (#1615)
1 parent dfa7fab commit 9fcf20b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/component-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ HTML tags and attribute names are case-insensitive, so browsers will interpret a
558558
// camelCase in JavaScript
559559
const BlogPost = {
560560
props: ['postTitle'],
561-
emits: ['updatePost']
561+
emits: ['updatePost'],
562562
template: `
563563
<h3>{{ postTitle }}</h3>
564564
`

0 commit comments

Comments
 (0)