From dad7be606664f20590d808aa34ae8a0fc47059b9 Mon Sep 17 00:00:00 2001 From: Hebilicious Date: Tue, 13 Oct 2015 12:23:39 +0200 Subject: [PATCH] Changing this with self Minor typo in the doc. --- source/guide/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide/components.md b/source/guide/components.md index 2e7d419348..1e62a02095 100644 --- a/source/guide/components.md +++ b/source/guide/components.md @@ -639,7 +639,7 @@ Vue.component('activate-example', { activate: function (done) { var self = this loadDataAsync(function (data) { - this.someData = data + self.someData = data done() }) }