You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In nuxt.js subscribers etc. will work only if you prepend related property with static, like static $subscribe = { ... }, otherwise createLocalSubscriber in proxy.ts will return on if( subscriptionMap === undefined ) return;. Not sure if this is related to nuxt only.
Another thing is that state is not available in subscribers and actionSubscribers, though normally Vuex passes it as second parameter. Any reason its not implemented here?
The text was updated successfully, but these errors were encountered:
Hi,
In nuxt.js subscribers etc. will work only if you prepend related property with
static
, likestatic $subscribe = { ... }
, otherwisecreateLocalSubscriber
inproxy.ts
will return onif( subscriptionMap === undefined ) return;
. Not sure if this is related to nuxt only.Another thing is that
state
is not available insubscribers
andactionSubscribers
, though normally Vuex passes it as second parameter. Any reason its not implemented here?The text was updated successfully, but these errors were encountered: