Closed mattmccray closed 7 years ago
This pull request will enable automatic event unsubscription when used in this manner:
Test.vue
<template></template> <script> export default { name: 'test', events: { disconnected() { // Do something here... } } } </script>
Currently the events aren't unsubscribed -- Which is especially a problem when using HMR.
sorry! totally let the notification for this slip by me. Looks pretty sweet! Thanks for the contribution.
This pull request will enable automatic event unsubscription when used in this manner:
Test.vue
Currently the events aren't unsubscribed -- Which is especially a problem when using HMR.