I can't display the vue-chart.js on the page

๐Ÿ‘:0

vue-chartjs is not compatible with chart.js v3 (latest version) so you will need to downgrade chart.js to version 2.9.4 to make it work or you need to use chart.js barebone without the vue wrapper:

npm uninstall chart.js
npm install chart.js@2.9.4

Leave a comment