[Vuejs]-Update Chart using ChartJS – VueJS

3👍

I had similar problem. I solved it by wrapping everything with nextTick

self.$nextTick(() => {
    var ctxChart = self.$refs.myChart.getContext('2d')
    ...
});

Leave a comment