mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
import BarChart from '../BaseCharts/Bar'
|
|
import reactiveProp from '../mixins/reactiveProp'
|
|
|
|
export default BarChart.extend({
|
|
mixins: [reactiveProp],
|
|
|
|
mounted () {
|
|
this.renderChart(this.chartData)
|
|
}
|
|
})
|