[Chartjs]-Cannot read property 'reactiveProp' of undefined in vue-chartjs

-1👍

Finnaly i fixed it by clear the package-lock.json, remove node_modules
run

npm install vue-chartjs chart.js --save

and
run

npm install

and it is ok!

0👍

You can go one step further and extract the reactiveProp out of mixins

import { Line, mixins: { reactiveProp } } from 'vue-chartjs'

Leave a comment