This commit is contained in:
2020-05-26 20:35:12 +00:00
parent 78177e3a01
commit 5665bb859d

View File

@@ -0,0 +1,20 @@
<script>
import { Line } from "vue-chartjs";
export default {
extends: Line,
props: {
chartdata: {
type: Object,
default: null
},
options: {
type: Object,
default: null
}
},
mounted() {
this.renderChart(this.chartdata, this.options);
}
};
</script>