How to make chartist update on Vuejs
问题 First of all a happy new year to everyone. I would like to call update at chartist-js . main.js import Chartist from "chartist"; Vue.prototype.$Chartist = Chartist; Component.vue <chart-card :chart-data="performanceUser.data" :chart-options="performanceUser.options" chart-type="Line" data-background-color="green"> </chart-card> Component.vue -> methods getStatsUser(){ UsersAPI.getUserPerformance(this.users.filters.user.active).then(r => { this.performanceUser.data.labels = r.data.labels; this