Nuxt/examples/vue-chartjs/components/bar-chart.js
Jakub c4c63e0c66 examples: update to vue-chartjs 3.0.0 (#2580)
* chore(dependencies): Update vue-chartjs and chartjs to latest version

* refactor(examples): Update component creation of charts
2018-01-13 22:30:03 +03:30

10 lines
164 B
JavaScript

import { Bar } from 'vue-chartjs'
export default {
extends: Bar,
props: ['data', 'options'],
mounted() {
this.renderChart(this.data, this.options)
}
}