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
{{ message }}
This repository was archived by the owner on Jun 18, 2025. It is now read-only.
importVueSocketiofrom'vue-socket.io-extended'importiofrom'socket.io-client'importstorefrom'./store'Vue.use(VueSocketio,io(`http://${window.location.hostname}`),{ store });
My mutation is like this in my store's mutations
SOCKET_message(state,data){console.log(data)}
From the server, we are emitting ('message', data)
Please be noted that I am using Quasar and initializing it in App.vue. Works fine with components but not with Vuex store.