We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18e101 commit f0ae296Copy full SHA for f0ae296
install.js
@@ -155,7 +155,7 @@ export function install(Vue, options) {
155
Vue.prototype.$subscriptionsReady = function () {
156
this._allSubsReadyDep.depend();
157
158
- this._allSubsReady = this._subscriptionHandles.every(function (handle, index, array) {
+ this._allSubsReady = Array.from(this._subscriptionHandles.values()).every(function (handle, index, array) {
159
return handle.ready();
160
});
161
0 commit comments