Skip to content

Commit

Permalink
chore: v3.0.0-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Sep 16, 2019
1 parent 53c9833 commit 5b1f345
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
14 changes: 7 additions & 7 deletions dist/vue-apollo.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -788,15 +788,15 @@ function (_SmartApollo) {

if (_this.hasDataField) {
Object.defineProperty(_this.vm.$data.$apolloData.data, key, {
get: function get$$1() {
get: function get() {
return _this.vm.$data[key];
},
enumerable: true,
configurable: true
});
} else {
Object.defineProperty(_this.vm.$data, key, {
get: function get$$1() {
get: function get() {
return _this.vm.$data.$apolloData.data[key];
},
enumerable: true,
Expand Down Expand Up @@ -1095,12 +1095,12 @@ function (_SmartApollo) {
}
}, {
key: "client",
get: function get$$1() {
get: function get() {
return this.vm.$apollo.getClient(this.options);
}
}, {
key: "loading",
get: function get$$1() {
get: function get() {
return this.vm.$data.$apolloData && this.vm.$data.$apolloData.queries[this.key] ? this.vm.$data.$apolloData.queries[this.key].loading : this._loading;
},
set: function set(value) {
Expand All @@ -1115,7 +1115,7 @@ function (_SmartApollo) {
}
}, {
key: "loadingKey",
get: function get$$1() {
get: function get() {
return this.options.loadingKey || this.vm.$apollo.loadingKey;
}
}]);
Expand Down Expand Up @@ -2073,7 +2073,7 @@ function install(Vue, options) {
}
ApolloProvider.install = install; // eslint-disable-next-line no-undef

ApolloProvider.version = "3.0.0-rc.4"; // Apollo provider
ApolloProvider.version = "3.0.0-rc.5"; // Apollo provider

var ApolloProvider$1 = ApolloProvider; // Components

Expand All @@ -2094,4 +2094,4 @@ if (GlobalVue) {
}

export default ApolloProvider;
export { install, ApolloProvider$1 as ApolloProvider, ApolloQuery, ApolloSubscribeToMore, ApolloMutation };
export { ApolloMutation, ApolloProvider$1 as ApolloProvider, ApolloQuery, ApolloSubscribeToMore, install };
Loading

0 comments on commit 5b1f345

Please sign in to comment.