BarChart.js 239 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import { Bar, mixins } from 'vue-chartjs-typescript' const { reactiveProp } = mixins export default { extends: Bar, props: ['options'], mixins: [reactiveProp], mounted () { this.renderChart(this.chartData, this.options) } }