Skip to content

Commit

Permalink
(fix) add missing quote in custom-input example (#1570)
Browse files Browse the repository at this point in the history
  • Loading branch information
Duske authored and chrisvfritz committed Apr 9, 2018
1 parent bffda57 commit 75309fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v2/guide/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ Vue.component('custom-input', {
template: `
<input
v-bind:value="value"
v-on:input="$emit('input', $event.target.value)
v-on:input="$emit('input', $event.target.value)"
>
`
})
Expand Down

0 comments on commit 75309fc

Please sign in to comment.