[Vuejs]-Vue.js – Registering the Chart Component via Webpack

0👍

Based on How to use in vue components of webpack? looks like vue-charts doesn’t completely support webpack imports, you have to refer to it via window.VueCharts.

import 'chart.js';
import 'hchs-vue-charts';

Vue.use(window.VueCharts);

Leave a comment