mirror of
https://github.com/tenrok/vue-native-websocket.git
synced 2026-05-17 05:09:39 +03:00
Merge pull request #39 from michgeek/master
Add namespaced mutation for Vuex
This commit is contained in:
Vendored
+1
-3
File diff suppressed because one or more lines are too long
+6
-2
@@ -41,8 +41,12 @@ export default class{
|
||||
|
||||
if(type.split('_')[0].toUpperCase() === 'SOCKET'){
|
||||
|
||||
if(this.store._mutations[type])
|
||||
this.store.commit(type, payload)
|
||||
for (let namespaced in this.store._mutations) {
|
||||
let mutation = namespaced.split('/').pop()
|
||||
|
||||
if (mutation === type)
|
||||
this.store.commit(namespaced, payload)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user