diff --git a/src/v2/guide/reactivity.md b/src/v2/guide/reactivity.md index 8a0e808f3..a148273b8 100644 --- a/src/v2/guide/reactivity.md +++ b/src/v2/guide/reactivity.md @@ -120,7 +120,7 @@ Vue.component('example', { }) ``` -Since `$nextTick()` returns a promise, you can achieve the same as the above using the new [ES7 async/await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) syntax: +`$nextTick()` は Promise を返却するため、新しい [ES7 async/await](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Statements/async_function) 構文を用いて、同じことができます: ``` ...