methods: {
handleWinFocus() {
alert('you are in page now');
},
},
ready() {
window.addEventListener('focus', this.handleWinFocus);
},
beforeDestroy() {
window.removeEventListener('focus', this.handleWinFocus);
},
实践发现真理~
methods: {
handleWinFocus() {
alert('you are in page now');
},
},
ready() {
window.addEventListener('focus', this.handleWinFocus);
},
beforeDestroy() {
window.removeEventListener('focus', this.handleWinFocus);
},