remove all logging

This commit is contained in:
2020-09-20 14:09:01 +02:00
parent bf3c4b7121
commit 31c40b27bb
3 changed files with 0 additions and 3 deletions

View File

@@ -46,7 +46,6 @@ export default {
window: this.window.label ? this.window.label.replace(' ', '-') : undefined window: this.window.label ? this.window.label.replace(' ', '-') : undefined
} }
} }
console.log(route)
this.$router.push(route) this.$router.push(route)
} }
} }

View File

@@ -28,7 +28,6 @@ export default {
}, },
methods: { methods: {
async fetchData() { async fetchData() {
console.log('fetch data')
if (this.window.label) { if (this.window.label) {
this.loading = true this.loading = true
const typeApi = { const typeApi = {

View File

@@ -68,7 +68,6 @@ export default {
} }
}, },
mounted() { mounted() {
console.log('mounted')
if (typeof this.activeWindow === 'string') { if (typeof this.activeWindow === 'string') {
const window = this.windows.find(w => w.label === this.activeWindow.replace('-', ' ')) const window = this.windows.find(w => w.label === this.activeWindow.replace('-', ' '))
this.$emit('set-window', window) this.$emit('set-window', window)