Skip to content

Commit 5b1f345

Browse files
author
Guillaume Chau
committed
chore: v3.0.0-rc.5
1 parent 53c9833 commit 5b1f345

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

dist/vue-apollo.esm.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -788,15 +788,15 @@ function (_SmartApollo) {
788788

789789
if (_this.hasDataField) {
790790
Object.defineProperty(_this.vm.$data.$apolloData.data, key, {
791-
get: function get$$1() {
791+
get: function get() {
792792
return _this.vm.$data[key];
793793
},
794794
enumerable: true,
795795
configurable: true
796796
});
797797
} else {
798798
Object.defineProperty(_this.vm.$data, key, {
799-
get: function get$$1() {
799+
get: function get() {
800800
return _this.vm.$data.$apolloData.data[key];
801801
},
802802
enumerable: true,
@@ -1095,12 +1095,12 @@ function (_SmartApollo) {
10951095
}
10961096
}, {
10971097
key: "client",
1098-
get: function get$$1() {
1098+
get: function get() {
10991099
return this.vm.$apollo.getClient(this.options);
11001100
}
11011101
}, {
11021102
key: "loading",
1103-
get: function get$$1() {
1103+
get: function get() {
11041104
return this.vm.$data.$apolloData && this.vm.$data.$apolloData.queries[this.key] ? this.vm.$data.$apolloData.queries[this.key].loading : this._loading;
11051105
},
11061106
set: function set(value) {
@@ -1115,7 +1115,7 @@ function (_SmartApollo) {
11151115
}
11161116
}, {
11171117
key: "loadingKey",
1118-
get: function get$$1() {
1118+
get: function get() {
11191119
return this.options.loadingKey || this.vm.$apollo.loadingKey;
11201120
}
11211121
}]);
@@ -2073,7 +2073,7 @@ function install(Vue, options) {
20732073
}
20742074
ApolloProvider.install = install; // eslint-disable-next-line no-undef
20752075

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

20782078
var ApolloProvider$1 = ApolloProvider; // Components
20792079

@@ -2094,4 +2094,4 @@ if (GlobalVue) {
20942094
}
20952095

20962096
export default ApolloProvider;
2097-
export { install, ApolloProvider$1 as ApolloProvider, ApolloQuery, ApolloSubscribeToMore, ApolloMutation };
2097+
export { ApolloMutation, ApolloProvider$1 as ApolloProvider, ApolloQuery, ApolloSubscribeToMore, install };

0 commit comments

Comments
 (0)