22 lines
344 B
Vue
22 lines
344 B
Vue
|
<script>
|
||
|
import { Doughnut, mixins } from 'vue-chartjs'
|
||
|
|
||
|
export default {
|
||
|
extends: Doughnut,
|
||
|
mixins: [mixins.reactiveProp],
|
||
|
props: {
|
||
|
data: {
|
||
|
type: Object,
|
||
|
default: null,
|
||
|
},
|
||
|
options: {
|
||
|
type: Object,
|
||
|
default: null,
|
||
|
},
|
||
|
},
|
||
|
mounted() {
|
||
|
this.renderChart(this.data, this.options)
|
||
|
},
|
||
|
}
|
||
|
</script>
|