Files
vue-chartjs/src/examples/ReactivePropExample.js
Jakub Juszczak 06c3148897 ⬆️ Update examples
2016-10-02 18:25:02 +02:00

11 lines
211 B
JavaScript

import BarChart from '../BaseCharts/Bar'
import reactiveData from '../mixins/reactiveProp'
export default BarChart.extend({
mixins: [reactiveData],
mounted () {
this.renderChart(this.chartData)
}
})