task metrics
This commit is contained in:
37
resources/assets/js/home/TaskMetrics/VueCharts.vue
Normal file
37
resources/assets/js/home/TaskMetrics/VueCharts.vue
Normal 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>
|
||||
Reference in New Issue
Block a user