Fix spinners, change socket emit names
This commit is contained in:
parent
5ca6538965
commit
f866ad5b34
3 changed files with 10 additions and 8 deletions
|
@ -129,15 +129,15 @@
|
|||
},
|
||||
|
||||
_socket_error: function (err) {
|
||||
this.$emit('socket-error', {err});
|
||||
this.$emit('socket::error', {err});
|
||||
},
|
||||
|
||||
_socket_connect: function () {
|
||||
this.$emit('socket-connected');
|
||||
this.$emit('socket::connected');
|
||||
},
|
||||
|
||||
_socket_status: function (data) {
|
||||
this.$emit('socket-status', {data});
|
||||
this.$emit('socket::status', {data});
|
||||
},
|
||||
|
||||
_socket_serverLog: function (data) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue