From 6b021ef5e374e22273917b58168962c810a0b73d Mon Sep 17 00:00:00 2001 From: Jinjiang Date: Thu, 26 Sep 2019 02:09:00 +0800 Subject: [PATCH] Small fix (close #2307). --- src/v2/guide/reactivity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/guide/reactivity.md b/src/v2/guide/reactivity.md index 65f0114769..1400c68f86 100644 --- a/src/v2/guide/reactivity.md +++ b/src/v2/guide/reactivity.md @@ -121,7 +121,7 @@ Vue.component('example', { }) ``` -Since `$nextTick()` returns a promise, you can achieve the same as the above using the new [ES2016 async/await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) syntax: +Since `$nextTick()` returns a promise, you can achieve the same as the above using the new [ES2017 async/await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) syntax: ``` js methods: {