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
Vue.use(VueNativeSock, 'ws://localhost:9090', {
connectManually: true,
})
const vm = new Vue()
// Connect to the websocket target specified in the configuration
vm.$connect().
But when i do connect(). I need to pass a token in the url for authentication. Is it possible without re-writing the entire url and options ?
The text was updated successfully, but these errors were encountered:
I want to use this manual connection example :
Vue.use(VueNativeSock, 'ws://localhost:9090', {
connectManually: true,
})
const vm = new Vue()
// Connect to the websocket target specified in the configuration
vm.$connect().
But when i do connect(). I need to pass a token in the url for authentication. Is it possible without re-writing the entire url and options ?
The text was updated successfully, but these errors were encountered: