forked from FoundKeyGang/FoundKey
[Client] Fix bug
This commit is contained in:
parent
372db65604
commit
ac8817ef34
2 changed files with 7 additions and 0 deletions
|
@ -140,6 +140,10 @@ export default Vue.extend({
|
|||
this.render();
|
||||
},
|
||||
|
||||
beforeDestroy() {
|
||||
this.chartInstance.destroy();
|
||||
},
|
||||
|
||||
methods: {
|
||||
setSrc(src) {
|
||||
this.src = src;
|
||||
|
|
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue