mirror of
https://github.com/MetinSeylan/Vue-Socket.io.git
synced 2025-04-16 15:21:28 +02:00
Merge pull request #67 from ncoden/fix/event-inheritance
Fix: propagate event to Socket
This commit is contained in:
commit
d3c8d11f9e
1 changed files with 3 additions and 0 deletions
|
@ -18,7 +18,10 @@ export default class{
|
|||
}
|
||||
|
||||
onEvent(){
|
||||
var super_onevent = this.Socket.onevent;
|
||||
this.Socket.onevent = (packet) => {
|
||||
super_onevent.call(this.Socket, packet);
|
||||
|
||||
Emitter.emit(packet.data[0], packet.data[1]);
|
||||
|
||||
if(this.store) this.passToStore('SOCKET_'+packet.data[0], [ ...packet.data.slice(1)])
|
||||
|
|
Loading…
Add table
Reference in a new issue