From 31c40b27bb38e103fa3b63342dbb3c1da09e4497 Mon Sep 17 00:00:00 2001 From: Marco Crapts Date: Sun, 20 Sep 2020 14:09:01 +0200 Subject: [PATCH] remove all logging --- src/App.vue | 1 - src/components/Chart.vue | 1 - src/components/TimeWindows.vue | 1 - 3 files changed, 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 2a95c90..89fb72a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -46,7 +46,6 @@ export default { window: this.window.label ? this.window.label.replace(' ', '-') : undefined } } - console.log(route) this.$router.push(route) } } diff --git a/src/components/Chart.vue b/src/components/Chart.vue index 189c5a3..3d61d58 100644 --- a/src/components/Chart.vue +++ b/src/components/Chart.vue @@ -28,7 +28,6 @@ export default { }, methods: { async fetchData() { - console.log('fetch data') if (this.window.label) { this.loading = true const typeApi = { diff --git a/src/components/TimeWindows.vue b/src/components/TimeWindows.vue index 359e203..c776266 100644 --- a/src/components/TimeWindows.vue +++ b/src/components/TimeWindows.vue @@ -68,7 +68,6 @@ export default { } }, mounted() { - console.log('mounted') if (typeof this.activeWindow === 'string') { const window = this.windows.find(w => w.label === this.activeWindow.replace('-', ' ')) this.$emit('set-window', window)