task metrics

This commit is contained in:
Henry Jordan
2021-07-30 20:18:11 +00:00
parent 89c3311d55
commit ff2956714c
11 changed files with 632 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
<template>
<div
id="v-pm-charts"
ref="v-pm-charts"
class="v-pm-charts vp-inline-block"
>
<vue-chart-lv-one/>
</div>
</template>
<script>
import VueChartLvOne from "./VueChartLvOne.vue";
export default {
name: "VueCharts",
mixins: [],
components: {
VueChartLvOne,
},
props: [],
data() {
let that = this;
return {
width: 0,
};
},
created() {},
mounted() {},
watch: {},
computed: {},
updated() {},
beforeCreate() {},
methods: {},
};
</script>
<style>
</style>