We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
i have an use case where the subscribe key is in a vuex store, and is not available at the initialisation of the plugin :
Vue.use(PubNubVue, { subscribeKey: null, ssl: true, uuid: null });
I'm then subscribing to the vuex store, and then i'm updating subscribeKey, but there is no easy method to do it.
i've done :
PubNubVue.getInstance().setUUID($store.state.pbnUUID).subscribeKey = $store.state.pbnSubscribeKey
it works but a method like this could be usefull :
PubNubVue.setConfig({ subscribeKey: $store.state.pbnSubscribeKey, ssl: true, uuid: $store.state.pbnUUID })
thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
i have an use case where the subscribe key is in a vuex store, and is not available at the initialisation of the plugin :
I'm then subscribing to the vuex store, and then i'm updating subscribeKey, but there is no easy method to do it.
i've done :
it works but a method like this could be usefull :
thanks
The text was updated successfully, but these errors were encountered: