<script>
export default {
methods: {
doAlert () {
alert('Hi!')
}
},
created () {
window.addEventListener('scroll', () => {
let body = document.getElementsByTagName('body')[0]
if (window.scrollY > body.clientHeight) {
this.doAlert()
}
})
}
}
</script>