rajeevgade / vue-360

A Simple and Beautiful 360° Product Viewer built on Vue.js
https://vue-360.now.sh/
MIT License
103 stars 30 forks source link

Add removeListener to destroyed hook. #19

Open Tenutes opened 3 years ago

Tenutes commented 3 years ago

Hi, you need to add removeEventListener to all binded Events, so it will destroy clearly. Thanks :) Btw, in my project i added: destroyed() { window.removeEventListener('resize', this.resizeWindow); document.removeEventListener('fullscreenchange', this.exitHandler); document.removeEventListener('webkitfullscreenchange', this.exitHandler); document.removeEventListener('mozfullscreenchange', this.exitHandler); document.removeEventListener('MSFullscreenChange', this.exitHandler); },