fix: chart instance should always be initialized

This commit is contained in:
Justineo
2022-01-18 16:55:13 +08:00
parent 677f100b07
commit 899ef4b8d5
4 changed files with 18 additions and 14 deletions

View File

@ -590,6 +590,9 @@ export default {
},
mounted() {
this.startActions();
},
beforeUnmount() {
this.stopActions();
}
};
</script>