Files
2021-01-25 13:45:50 +11:00

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>