mirror of
https://github.com/MetinSeylan/Vue-Socket.io.git
synced 2025-04-16 15:21:28 +02:00
Fix Spelling
- Rename `Listenler` to `Listener`
This commit is contained in:
parent
207a0a13bd
commit
bdcd92a430
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import Mixin from './mixin';
|
||||
import Logger from './logger';
|
||||
import Listenler from './listenler';
|
||||
import Listener from './listener';
|
||||
import Emitter from './emitter';
|
||||
import SocketIO from 'socket.io-client';
|
||||
|
||||
|
@ -17,7 +17,7 @@ export default class VueSocketIO {
|
|||
Logger.debug = debug;
|
||||
this.io = this.connect(connection);
|
||||
this.emitter = new Emitter(vuex);
|
||||
this.listener = new Listenler(this.io, this.emitter);
|
||||
this.listener = new Listener(this.io, this.emitter);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
export default class VueSocketIOListenler {
|
||||
export default class VueSocketIOListener {
|
||||
|
||||
/**
|
||||
* socket.io-client reserved event keywords
|
Loading…
Add table
Reference in a new issue