0👍
You can try :
new Vue({
created () {
window.addEventListener('beforeunload', this.updateUser)
},
methods: {
updateUser () {
console.log('updating user')
}
}
})
Source:stackexchange.com
0👍
You can try :
new Vue({
created () {
window.addEventListener('beforeunload', this.updateUser)
},
methods: {
updateUser () {
console.log('updating user')
}
}
})