This repository was archived by the owner on Jun 18, 2025. It is now read-only.

Description
Example
// store.js
export default {
mutation: {
SOCKET_GREETING_MESSAGE(state, message) {
console.log(message);
},
},
}
// server.js
io.emit('GREETING_MESSAGE', 'Hi there');
Expected result: SOCKET_GREETING_MESSAGE receives message as 'Hi there'
Actual result: SOCKET_GREETING_MESSAGE receives message as ['Hi there']
Versions
vue-socket.io-extended: 2.0.0
vue: 2.5.13
vuex: 3.0.1