correct layout, add chart

This commit is contained in:
2020-07-30 22:24:07 +02:00
parent e21bc0782c
commit 8a4d7cf10d
6 changed files with 128 additions and 46 deletions
+23
View File
@@ -0,0 +1,23 @@
<script>
import { Line } from 'vue-chartjs';
export default {
extends: Line,
mounted () {
this.renderChart ([
0.1,
0.2,
0.4,
0.8,
1.6,
3.2,
6.4,
12.8,
25.6
]);
}
};
</script>
<style>
</style>