DEV Community

Discussion on: Vue Renderless Component Fun: Google Analytics Event Tracker

Collapse
 
thomasfindlay profile image
Thomas Findlay

You should also add removal of the listener as otherwise this code will introduce memory leak.

const el = yourlistener
this.$on('hook:beforeDestroy', () => removeYourListener)