Vue: fix component destroy error See merge request chartwerk/core!23
@ -32,7 +32,9 @@ export default {
this.renderChart();
},
destroyed() {
this.pod.removeEventListeners();
if(this.pod) {
}
this.pod = undefined;
methods: {