Skip to content

Commit 520e4e8

Browse files
fix: fixed incorrect code for Options API in tutorial step 5
Close #1628
1 parent 0f69aba commit 520e4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tutorial/src/step-5/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ methods: {
1313
onInput(e) {
1414
// a v-on handler receives the native DOM event
1515
// as the argument.
16-
text.value = e.target.value
16+
this.text = e.target.value
1717
}
1818
}
1919
```

0 commit comments

Comments
 (0)