14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
|
|
const reactiveProp = VueChartJs.mixins.reactiveProp
|
|
export default {
|
|
mixins: [reactiveProp],
|
|
props: ['options'],
|
|
extends: VueChartJs.Pie,
|
|
mounted () {
|
|
this.renderChart(
|
|
this.chartData, this.options
|
|
)
|
|
}
|
|
}
|
|
|