Skip to content

Commit 375ebb6

Browse files
committed
Fix #6
1 parent 06eec63 commit 375ebb6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-apollo",
3-
"version": "1.0.0-beta.12",
3+
"version": "1.0.0-beta.14",
44
"description": "Vue apollo integration",
55
"main": "index.js",
66
"scripts": {

src/vue-plugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class DollarApollo {
156156
}
157157
}
158158

159-
function prepare() {
159+
const prepare = function prepare() {
160160
this._apolloSubscriptions = [];
161161

162162
// Lazy creation
@@ -170,7 +170,7 @@ function prepare() {
170170
});
171171
}
172172

173-
function launch() {
173+
const launch = function launch() {
174174
let apollo = this.$options.apollo;
175175

176176
if (apollo) {

0 commit comments

Comments
 (0)