Attach a custom plugin to Vue-Chart
问题 We need to attach a custom plugin to vue-chart. Please guide us how to implement on the same import { Line, mixins } from 'vue-chartjs' export default { namespaced: true, extends: Line, props: ['chartData', 'options'], mounted() { this.renderChart(this.chartData, this.chartData.options) } } This is how we are using the line chart of Vue-chart. How to attach the plugin here https://blog.larapulse.com/javascript/creating-chart-js-plugins We want to try this. But since we are using vue-chart