removed vuejs logger completely, upgraded to vue 4.x validation not yet working

This commit is contained in:
2020-07-30 16:42:32 +02:00
parent 0a885f1750
commit d26cc1492d
23 changed files with 5436 additions and 2354 deletions

View File

@@ -44,7 +44,6 @@
// Vue.$moment.locale(locale);
},
sendWsMessage(msg) {
this.$log.debug('sending msg: ' + msg);
this.$socket.client.emit('my_event', msg);
},
connectWebsocket() {
@@ -62,15 +61,10 @@
},
mounted() {
this.$socket.client.on('my_response', function(msg) {
this.$log.debug(msg);
});
this.$socket.client.on('server_event', function(msg) {
this.$log.debug('get server_event:');
this.$log.debug(msg);
});
this.$socket.client.on('connect', function(msg) {
this.$log.debug('We are connected!');
this.$log.debug(msg);
});
// this.$socket.$unsubscribe('even_name');