Vue - 監聽頁面刷新和關閉


一,在 created中 注冊 頁面刷新和關閉事件
created() {
 window.addEventListener('beforeunload', e => this.test(e))
}
 
二,事件,將你的邏輯方法加進去
methods: {
 test(e) {
  console.log('刷新或關閉')
  // ...
 }
}
三,卸載注冊的事件
destroyed() {
 window.removeEventListener('beforeunload', e => this.test(e))
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM