1👍
We use a simple method:
- add a v-if to your chart, for example
v-if="renderChart"
- It is
false
in the beginning but when data is loaded change it totrue
- Whenever you expect the data to change, change it to
false
again and after change of data update it totrue
once again.
It has worked for us for a long time now.
Source:stackexchange.com