Nuxt/examples/vue-chartjs/components/doughnut-chart.js

10 lines
174 B
JavaScript
Raw Normal View History

2017-08-24 10:16:12 +00:00
import { Doughnut } from 'vue-chartjs'
export default {
extends: Doughnut,
2017-08-24 10:16:12 +00:00
props: ['data', 'options'],
2017-10-31 13:43:55 +00:00
mounted() {
2017-08-24 10:16:12 +00:00
this.renderChart(this.data, this.options)
}
}