chore: v3.0.0-beta.22

This commit is contained in:
Guillaume Chau
2018-09-07 22:59:52 +02:00
parent f27a54ee61
commit db48ab664a
4 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -1541,7 +1541,7 @@ var CApolloQuery = {
} else {
result = [result].concat(this.$slots.default);
}
return this.tag ? h(this.tag, result) : result;
return this.tag ? h(this.tag, result) : result[0];
}
};
@@ -1691,7 +1691,7 @@ var CApolloMutation = {
} else {
result = [result].concat(this.$slots.default);
}
return this.tag ? h(this.tag, result) : result;
return this.tag ? h(this.tag, result) : result[0];
}
};
@@ -1896,7 +1896,7 @@ function install(Vue, options) {
ApolloProvider.install = install;
// eslint-disable-next-line no-undef
ApolloProvider.version = "3.0.0-beta.21";
ApolloProvider.version = "3.0.0-beta.22";
// Apollo provider
var ApolloProvider$1 = ApolloProvider;
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -1547,7 +1547,7 @@ var CApolloQuery = {
} else {
result = [result].concat(this.$slots.default);
}
return this.tag ? h(this.tag, result) : result;
return this.tag ? h(this.tag, result) : result[0];
}
};
@@ -1697,7 +1697,7 @@ var CApolloMutation = {
} else {
result = [result].concat(this.$slots.default);
}
return this.tag ? h(this.tag, result) : result;
return this.tag ? h(this.tag, result) : result[0];
}
};
@@ -1902,7 +1902,7 @@ function install(Vue, options) {
ApolloProvider.install = install;
// eslint-disable-next-line no-undef
ApolloProvider.version = "3.0.0-beta.21";
ApolloProvider.version = "3.0.0-beta.22";
// Apollo provider
var ApolloProvider$1 = ApolloProvider;
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vue-apollo",
"version": "3.0.0-beta.21",
"version": "3.0.0-beta.22",
"description": "Use Apollo and GraphQL with Vue.js",
"main": "dist/vue-apollo.umd.js",
"module": "dist/vue-apollo.esm.js",