2
0
mirror of https://github.com/tenrok/vue-native-websocket.git synced 2026-05-17 05:09:39 +03:00

Fix #29 function name typos in README.md

This commit is contained in:
Daan Vankerkom
2018-01-15 20:14:51 +01:00
parent 3551355f2b
commit 57f0228a6d
+2 -2
View File
@@ -143,10 +143,10 @@ export default new Vuex.Store({
state.message = message
},
// mutations for reconnect methods
[ws.WS_RECONNECT](state, count) {
SOCKET_RECONNECT(state, count) {
console.info(state, count)
},
[ws.WS_RECONNECT_ERROR](state) {
SOCKET_RECONNECT_ERROR(state) {
state.socket.reconnectError = true;
},
}