mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
21 lines
292 B
Vue
21 lines
292 B
Vue
<script>
|
|
import { Line } from 'vue-chartjs'
|
|
|
|
export default {
|
|
extends: Line,
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
},
|
|
mounted () {
|
|
this.renderChart(this.data, this.options)
|
|
}
|
|
}
|
|
</script>
|