eslint: enable console
This commit is contained in:
parent
610953fc1b
commit
a3948ccb8e
@ -2,4 +2,7 @@ module.exports = {
|
|||||||
extends: [
|
extends: [
|
||||||
'@nextcloud',
|
'@nextcloud',
|
||||||
],
|
],
|
||||||
|
rules: {
|
||||||
|
'no-console': 'off',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
@ -50,6 +50,7 @@ export default {
|
|||||||
}),
|
}),
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loadStations()
|
this.loadStations()
|
||||||
|
this.scroll()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
loadStations() {
|
loadStations() {
|
||||||
@ -59,6 +60,14 @@ export default {
|
|||||||
vm.tableData = data
|
vm.tableData = data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
scroll() {
|
||||||
|
window.onscroll = () => {
|
||||||
|
const bottomOfWindow = document.documentElement.scrollTop + window.innerHeight === document.documentElement.offsetHeight
|
||||||
|
if (bottomOfWindow) {
|
||||||
|
console.log('test')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user