[Client] Fix bug

This commit is contained in:
syuilo 2018-11-09 18:38:10 +09:00
parent 9bdb5faaac
commit d951ecc11d
2 changed files with 7 additions and 0 deletions

View File

@ -140,6 +140,10 @@ export default Vue.extend({
this.render();
},
beforeDestroy() {
this.chartInstance.destroy();
},
methods: {
setSrc(src) {
this.src = src;

View File

@ -117,6 +117,9 @@ export default Vue.extend({
beforeDestroy() {
this.connection.off('stats', this.onStats);
this.connection.off('statsLog', this.onStatsLog);
this.cpuChart.destroy();
this.memChart.destroy();
},
methods: {